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/main.nub
nub31 bdce45e1c5 ...
2025-06-15 01:17:25 +02:00

12 lines
119 B
Plaintext

namespace main
export func main(args: [][]u8): i64 {
let x: []u8
x = args[0]
c::puts(x)
return 0
}