Files
pipple/tests/compileme.ppl

8 lines
155 B
Plaintext
Raw Normal View History

2025-11-16 18:45:13 +11:00
(print "dingus")
(let x (function int [int x int y]
(print "dingus, but this time we're in a function")
(return 5)
))
(print (x 5 6))
(return 69)