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/main.nub
nub31 9f7bc4d2d5 ...
2025-06-02 14:31:05 +02:00

12 lines
191 B
Plaintext

namespace main
export func main(args: []^string) {
c::printf("%d\n", args.count)
let i: i64
while i < args.count {
c::printf("%s\n", args[i])
i += 1
}
}