mirror of
https://github.com/janet-lang/janet
synced 2024-11-15 05:04:49 +00:00
f52e290206
there are some memory leak issues (problems with gc).
7 lines
150 B
Plaintext
7 lines
150 B
Plaintext
(: f (fn [x] (strcat (tostring x) "-abumba")))
|
|
|
|
(: i 100)
|
|
(while (> i 0) (print i) (: i (- i 1)))
|
|
|
|
(print (strcat (tostring (+ 1 2 3)) 'a 'b (f 'c)))
|