diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-05 11:03:32 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-05 14:21:53 +0200 |
| commit | ac6b455f4a9be11d322551a927c4330532f9f184 (patch) | |
| tree | c5dd421f4aeb8ca60eadabc5cc7edf03ae58e743 /stdlib/maybe.lisp | |
| parent | 9f4ca350ee81a874b0c838c2e82076efde6db8b2 (diff) | |
Add record, union concepts
Diffstat (limited to 'stdlib/maybe.lisp')
| -rw-r--r-- | stdlib/maybe.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/maybe.lisp b/stdlib/maybe.lisp index 07adaee..086b0dc 100644 --- a/stdlib/maybe.lisp +++ b/stdlib/maybe.lisp @@ -1,9 +1,9 @@ ; LIB (let! Maybe/just (\[a] - ["maybe" "just" a])) + ["Maybe" "just" a])) (let! Maybe/nothing (\[] - ["maybe" "nothing"])) + ["Maybe" "nothing"])) (let! Maybe/#at (\[n seq] (match seq |
