This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive-2/example/program.nub
2025-05-05 22:29:50 +02:00

13 lines
173 B
Plaintext

import "c";
global func main() {
let x = true;
while x {
if (true) {
puts("level 1");
}
puts("level 2");
break;
}
}