1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-29 15:30:41 +00:00
janet/libs/stl.gst

5 lines
91 B
Plaintext
Raw Normal View History

(print 1)
2017-03-26 15:47:58 +00:00
2017-04-18 02:14:35 +00:00
(: counter 0)
(while (< counter 100) (print counter) (: counter (+ 1 counter)))