diff options
author | Eduardo Julian | 2015-08-29 18:12:27 -0400 |
---|---|---|
committer | Eduardo Julian | 2015-08-29 18:12:27 -0400 |
commit | cc928a8675cb35dabd4a4957ab6612b70f015d58 (patch) | |
tree | 676c99b8f37e9485f45d29397280501292706969 /src | |
parent | 8de225f98aaed212bf3b683208bff5c6ab85a835 (diff) |
- Removed the (unnecessary) lux/data/cont module.
- Removed the (unnecessary) lux/data/error module and moved it's structures to lux/data/either.
- Implemented the \slots destructurer for records.
- Implemented quicksort for lists as the "sort" function in lux/data/list.
- Added tags for the Cursor type.
Diffstat (limited to '')
-rw-r--r-- | src/lux/compiler/io.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lux/compiler/io.clj b/src/lux/compiler/io.clj index e72f34a7b..93be57f17 100644 --- a/src/lux/compiler/io.clj +++ b/src/lux/compiler/io.clj @@ -12,4 +12,4 @@ (let [file (new java.io.File path)] (if (.exists file) (return (slurp file)) - (fail (str "[I/O] File doesn't exist: " path))))) + (fail (str "[I/O Error] File doesn't exist: " path))))) |