mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-10 13:21:37 -07:00
11 lines
120 B
Odin
11 lines
120 B
Odin
#import "fmt.odin"
|
|
|
|
str := "Hellope"
|
|
|
|
a: [12]u8
|
|
main :: proc() {
|
|
v: [4]f32
|
|
v[0] = 123
|
|
fmt.println(str, v, v[0], a)
|
|
}
|