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 6121334ab2 ...
2025-06-14 23:33:09 +02:00

19 lines
227 B
Plaintext

namespace main
struct Human {
name: string
// print_age: func() = func() {
// c::puts("test3")
// }
}
export func main(args: [][]u8): i64 {
let x: []u8
x = args[0]
c::puts(x)
return 0
}