Initial commit

This commit is contained in:
2025-11-10 20:44:10 +11:00
commit 18fadc18ed
8 changed files with 3500 additions and 0 deletions

11
tests/num.ppl Normal file
View File

@@ -0,0 +1,11 @@
(let x 0)
(if (== x 0)
(print "x is zero")
(set x 1)
(print "now it is" x)
)
(while (!= x 5)
(print "x is currently" x "which is not 5. i must make it 5")
(set x (+ x 1))
)