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 fac2c95d05 ...
2025-05-25 01:03:15 +02:00

16 lines
224 B
Plaintext

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