aboutsummaryrefslogtreecommitdiffstats
path: root/examples/impure-concept.lisp
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-05 11:03:32 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-05 14:21:53 +0200
commitac6b455f4a9be11d322551a927c4330532f9f184 (patch)
treec5dd421f4aeb8ca60eadabc5cc7edf03ae58e743 /examples/impure-concept.lisp
parent9f4ca350ee81a874b0c838c2e82076efde6db8b2 (diff)
Add record, union concepts
Diffstat (limited to 'examples/impure-concept.lisp')
-rw-r--r--examples/impure-concept.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/impure-concept.lisp b/examples/impure-concept.lisp
index e612339..f769424 100644
--- a/examples/impure-concept.lisp
+++ b/examples/impure-concept.lisp
@@ -3,7 +3,7 @@
; Pure functions can only call pure functions.
; Impure function names end in an exclamation mark (!) by convention.
; The top-level context is impure but has special rules
-; related to (import!) and (let!).
+; related to `import!`, `let!`, and other builtins.
; pure function
(let! f (\[x] x))