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-07 20:53:17 +02:00

18 lines
230 B
Plaintext

namespace main
struct Human {
age: ^u64
}
export func main(args: []^string) {
let x = [3]f64
x[0] = 1
x[1] = 2
x[2] = 3
c::printf("%f\n", x[0])
c::printf("%f\n", x[1])
c::printf("%f\n", x[2])
}