aboutsummaryrefslogtreecommitdiffstats
path: root/test/scripts/try1.milch
blob: 32abba263f9e76c05ec9d39e33bd7c7e9d2932e6 (plain)
1
2
3
4
5
6
7
8
(import "core/common")
(import "core/result")

(let safe-read-file! (Result/safe! read-file!))

; calls read-file! and wraps the result in a Result/ok on success
; in case of error, calls Result/ex on the error string
(safe-read-file! "does-not-exist.txt")