Pipes and test scripts

This commit is contained in:
Michael Schimmel
2025-12-26 13:47:10 +01:00
parent 8b765487ae
commit 185f8273dd
23 changed files with 1477 additions and 572 deletions
+9
View File
@@ -0,0 +1,9 @@
;; EXPECT: "done"
;; TYPE: vkText
(do
(def count-down (fn [n]
(if (= n 0)
"done"
(recur (- n 1)))))
(count-down 100000)
)