aboutsummaryrefslogtreecommitdiffstats
path: root/examples/impure-concept.milch
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-06 15:40:52 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-06 15:40:52 +0200
commite73ad00f44479e3065ccf12d07ca3ae22ca1f3f0 (patch)
tree628c4957a9e53815d1ccf49f87a1002ccc059ac6 /examples/impure-concept.milch
parent21ee11d3df3000a77d5b36d3c7e0a18d9a07d599 (diff)
Remove ! from end of builtin top-level functions
Diffstat (limited to 'examples/impure-concept.milch')
-rw-r--r--examples/impure-concept.milch6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/impure-concept.milch b/examples/impure-concept.milch
index 893b29e..c767914 100644
--- a/examples/impure-concept.milch
+++ b/examples/impure-concept.milch
@@ -3,10 +3,10 @@
; 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!`, `let!`, and other builtins.
+; related to `import`, `let`, and other builtins.
; pure function
-(let! f (\[x] x))
+(let f (\[x] x))
; impure function
-(let! g! (\![x] (print! x)))
+(let g! (\![x] (print! x)))