break/continue working

This commit is contained in:
nub31
2025-05-05 22:15:08 +02:00
parent bfaad0950b
commit df6e926bae
4 changed files with 64 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
import "c";
global func main() {
let x = "test";
puts(x);
while true {
continue;
}
}