aboutsummaryrefslogtreecommitdiffstats
path: root/examples/purity-test.lisp
diff options
context:
space:
mode:
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)