Simplified compilation of function calls

This commit is contained in:
2025-03-02 21:36:23 +01:00
parent c3054369e3
commit ea233d789d
14 changed files with 114 additions and 97 deletions

11
tests/programs/loop.q Normal file
View File

@ -0,0 +1,11 @@
main() {
n := 10
loop {
if n == 0 {
return
}
n -= 1
}
}