This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/example/program.nub
nub31 757e3490f5 ...
2025-05-24 20:37:26 +02:00

16 lines
222 B
Plaintext

import c
// Test
// Test2
// Test3
// Test4
global func main(args: []string) {
i = 0
printf("%d\n", args.count)
while i < args.count {
// Test
printf("%s\n", args[i])
i = i + 1
}
}