1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-24 06:03:17 +00:00
janet/libs/stl.dst
bakpakin 3efd400025 Huge number of changes. Still WIP. Refactoring and
changing C API model. This commit is not i a working state.
2017-09-09 14:39:51 -04:00

12 lines
137 B
Plaintext

(print "Hello, World!")
(do (+ 1 2 3))
(print (+ 1 2 3))
# Comment
(var i 0)
(while (< i 1000)
(print i)
(varset! i (+ i 1)))