mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-11 05:41:25 -07:00
18 lines
210 B
Odin
18 lines
210 B
Odin
#load "basic.odin"
|
|
|
|
main :: proc() {
|
|
Vector3 :: struct {
|
|
x: i8
|
|
y: i32
|
|
z: i16
|
|
}
|
|
|
|
v := Vector3{1, 4, 9}
|
|
|
|
t := type_info(v)
|
|
|
|
println(123, "Hello", true, 6.28)
|
|
println([4]int{1, 2, 3, 4})
|
|
println(v)
|
|
}
|