mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-19 04:12:22 -07:00
15 lines
154 B
Odin
15 lines
154 B
Odin
#load "basic.odin"
|
|
#load "math.odin"
|
|
|
|
main :: proc() {
|
|
i: int
|
|
s: struct {
|
|
x, y, z: f32
|
|
}
|
|
p := ^s
|
|
|
|
a: any = i
|
|
|
|
println(137, "Hello", 1.25, true)
|
|
}
|