#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) }