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 7c05870e24 ...
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
}