mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 19:02:23 -07:00
11 lines
165 B
Odin
11 lines
165 B
Odin
#load "basic.odin"
|
|
|
|
main :: proc() {
|
|
println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
|
|
x: struct #ordered {
|
|
x, y: int
|
|
z: f32
|
|
}
|
|
println("%", x)
|
|
}
|