20 lines
249 B
Plaintext
20 lines
249 B
Plaintext
namespace main
|
|
|
|
struct Human {
|
|
age: ^u64
|
|
}
|
|
|
|
export func main(args: []^string): i64 {
|
|
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])
|
|
|
|
return 0
|
|
}
|