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 5fffd07077 ...
2025-06-15 02:21:11 +02:00

18 lines
210 B
Plaintext

namespace main
struct Human {
name: cstring
}
export func main(args: []cstring): i64 {
let human: Human
human = alloc Human {
name = "test"
}
c::puts(human.name)
return 0
}