1
0
mirror of https://github.com/janet-lang/janet synced 2025-02-08 21:10:02 +00:00
janet/libs/stl.gst

5 lines
91 B
Plaintext
Raw Normal View History

(print 1)
2017-03-26 11:47:58 -04:00
2017-04-17 22:14:35 -04:00
(: counter 0)
(while (< counter 100) (print counter) (: counter (+ 1 counter)))