mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-22 21:54:59 -07:00
9 lines
109 B
Odin
9 lines
109 B
Odin
#import "fmt.odin"
|
|
|
|
a: [12]u8
|
|
main :: proc() {
|
|
v: [4]f32
|
|
v[0] = 123
|
|
fmt.println("Hellope!", v, v[0], a)
|
|
}
|