aboutsummaryrefslogtreecommitdiff
path: root/examples/loop.lyn
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-10-20 22:47:03 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-10-23 18:25:23 +0300
commit4cf7c8bacfc836cff5278317cb32dc029cb87273 (patch)
tree58d30dca3fe413c146fd0020abf8796606030db5 /examples/loop.lyn
parentc5babf57de94a9a5e35c4bbb1237f3bffd15456c (diff)
downloadlyn-4cf7c8bacfc836cff5278317cb32dc029cb87273.tar.gz
lyn-4cf7c8bacfc836cff5278317cb32dc029cb87273.zip
play around with guile as a backend
+ I have officially devolved my language into an alternative syntax for Scheme. Oh well.
Diffstat (limited to 'examples/loop.lyn')
-rw-r--r--examples/loop.lyn6
1 files changed, 0 insertions, 6 deletions
diff --git a/examples/loop.lyn b/examples/loop.lyn
deleted file mode 100644
index 0304672..0000000
--- a/examples/loop.lyn
+++ /dev/null
@@ -1,6 +0,0 @@
-let sum 0
-for {let i 0} {< i 1000000} {set i (+ i 1)} {
- set sum (+ sum i)
-}
-
-println sum