Pipes and test scripts
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
;; EXPECT: "done"
|
||||
;; TYPE: vkText
|
||||
(do
|
||||
(def count-down (fn [n]
|
||||
(if (= n 0)
|
||||
"done"
|
||||
(recur (- n 1)))))
|
||||
(count-down 100000)
|
||||
)
|
||||
Reference in New Issue
Block a user