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
2025-06-02 21:47:09 +02:00

15 lines
231 B
Plaintext

namespace main
struct Human {
name: string
age: i64
}
export func main(args: []^string) {
let me = alloc Human {
name = "oliver"
age = 32
}
c::printf("%s is %d years old\n", me.name, me.age)
}