aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-09-27 10:20:05 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-05 14:21:53 +0200
commit83ae25fe87e3a56d169ae8cfc5bf20423d3ec4a5 (patch)
tree922febad90ffa863c9e244dffbdb44957c5df273 /examples
parent18c241ff7a53625c6f3c4e6f20ee8df5bb37ddf3 (diff)
Add fatal builtin
Diffstat (limited to 'examples')
-rw-r--r--examples/maybe.lisp18
1 files changed, 9 insertions, 9 deletions
diff --git a/examples/maybe.lisp b/examples/maybe.lisp
index c72e114..0447139 100644
--- a/examples/maybe.lisp
+++ b/examples/maybe.lisp
@@ -8,7 +8,7 @@
(let unsafe-at (\[n seq]
(match seq
[]
- (error "unsafe-at out of bounds")
+ (fatal "unsafe-at out of bounds")
(match n
0
(head seq)
@@ -39,11 +39,11 @@
"nothing"
(print-line! "found nothing!"))
-;; (export [
-;; just
-;; nothing
-;; unpack-just
-;; kind
-;; map
-;; and-then
-;; ]) \ No newline at end of file
+(let exports [
+ just
+ nothing
+ unpack-just
+ kind
+ map
+ and-then
+])