1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-15 13:14:48 +00:00
janet/libs/stl.gst

7 lines
150 B
Plaintext
Raw Normal View History

(: f (fn [x] (strcat (tostring x) "-abumba")))
2017-03-26 15:47:58 +00:00
(: i 100)
(while (> i 0) (print i) (: i (- i 1)))
(print (strcat (tostring (+ 1 2 3)) 'a 'b (f 'c)))