aboutsummaryrefslogtreecommitdiffstats
path: root/examples/purity-test.lisp
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-05 14:19:12 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-05 14:21:53 +0200
commit4002b8988c799a904ef1f359d4267ef4ad80cba3 (patch)
treedbb67560f3a44c57df4b0e960861f60605ceb45f /examples/purity-test.lisp
parentbba047ae945ae7d7899d6e2c1610923bcedb0442 (diff)
Rename project to Milch
Diffstat (limited to 'examples/purity-test.lisp')
-rw-r--r--examples/purity-test.lisp20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/purity-test.lisp b/examples/purity-test.lisp
deleted file mode 100644
index 31e82d3..0000000
--- a/examples/purity-test.lisp
+++ /dev/null
@@ -1,20 +0,0 @@
-(let! f (\[x] x))
-(f 10)
-
-(let! g! (\![x] (print! x)))
-(g! "foo")
-
-(let! h (\[x] (g! x)))
-(h "bar")
-
-(let! main! (\![]
- (print! (fmt "{0}\n" ["main"]))
- ))
-
-(main!)
-
-(let! pure-main (\[]
- (print! (fmt "{0}\n" ["pure-main"]))
- ))
-
-(pure-main)