1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-28 07:08:14 +00:00

Update slurp and spit error handler.

This commit is contained in:
Calvin Rose 2019-01-26 17:27:05 -05:00
parent 5bf9e4fc89
commit 68e00cdb7a

View File

@ -1712,6 +1712,7 @@ value, one key will be ignored."
and then close the file."
[path]
(def f (file/open path :r))
(if-not f (error (string "could not open file " path)))
(def contents (file/read f :all))
(file/close f)
contents)
@ -1722,6 +1723,7 @@ value, one key will be ignored."
[path contents mode &]
(default mode :w)
(def f (file/open path mode))
(if-not f (error (string "could not open file " path " with mode " mode)))
(file/write f contents)
(file/close f)
nil)