summaryrefslogtreecommitdiff
path: root/test.pez
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-10-08 21:02:30 +0200
committerlemon <lsof@mailbox.org>2022-10-08 21:02:30 +0200
commitf6b93fa139b4bbaa89a5e3e725f498275ca8d296 (patch)
tree6be50c3f75fc38b4559f940c04ca378abf9e73d4 /test.pez
parente2283f6c7f5abc60dc7ba7ea59deee94da714da7 (diff)
basic gc and closures sketon
Diffstat (limited to 'test.pez')
-rw-r--r--test.pez2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.pez b/test.pez
index 93d06b7..e451a78 100644
--- a/test.pez
+++ b/test.pez
@@ -1,4 +1,4 @@
-~fib = {[x]
+~fib= {[x]
x < 2 ? x : fib[x - 1] + fib[x - 2]
}