mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
14 lines
213 B
Odin
14 lines
213 B
Odin
// #load "basic.odin"
|
|
#import "runtime.odin"
|
|
#import "print.odin"
|
|
|
|
|
|
main :: proc() {
|
|
println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
|
|
x: struct #ordered {
|
|
x, y: int
|
|
z: f32
|
|
}
|
|
println("%", x)
|
|
}
|