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 3f7499d2b9 ...
2025-06-15 01:47:10 +02:00

12 lines
125 B
Plaintext

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