mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-14 15:11:25 -07:00
10 lines
98 B
Odin
10 lines
98 B
Odin
#import "fmt.odin"
|
|
|
|
main :: proc() {
|
|
v: {4}f32
|
|
v[0] = 123
|
|
fmt.println("Hellope!", v, v[0])
|
|
}
|
|
|
|
|