while loop support, and native functions (including ffi!)

This commit is contained in:
2023-09-06 19:07:28 -07:00
parent ddff6cb365
commit 236f812caf
34 changed files with 467 additions and 115 deletions

6
examples/loop.pork Normal file
View File

@ -0,0 +1,6 @@
export func main() {
while true {
println("Hello World")
break
}
}