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)
)
+3
View File
@@ -0,0 +1,3 @@
;; EXPECT: 25
;; TYPE: vkScalar
(+ 10 15)
+4
View File
@@ -0,0 +1,4 @@
;; EXPECT: <method>
;; TYPE: vkMethod
;; SIGNATURE: Method(Unknown): Unknown
(fn [n] (do n))