Add save functionality and shortcuts

This commit is contained in:
Michael Schimmel
2026-02-17 23:19:08 +01:00
parent 98d3344912
commit 83f6cfb8e1
6 changed files with 116 additions and 11 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
;; Benchmark: 2.7ms
;; Output: "done"
(do
(def count_down (fn [n]
(if (< n 1)
"done"
(count_down (- n 1)))))
(count_down 1000000)
(count_down 10000)
)