Add simple C++ compiler

This commit is contained in:
2025-11-16 18:45:13 +11:00
parent c9c00e219d
commit 9d345724ea
2 changed files with 459 additions and 13 deletions

7
tests/compileme.ppl Normal file
View File

@@ -0,0 +1,7 @@
(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)