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 f63cee1011 ...
2025-05-26 20:10:22 +02:00

16 lines
236 B
Plaintext

namespace main
/// # Documentation
/// ## Documentation subtitle
global func main(args: []string) {
i = 0
c::printf("%d\n", args.count)
while i < args.count {
c::printf("%s\n", args[i])
i = i + 1
}
}