18 lines
230 B
Plaintext
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])
|
|
}
|