mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-15 23:51:25 -07:00
10 lines
114 B
Odin
10 lines
114 B
Odin
#load "basic.odin"
|
|
|
|
main :: proc() {
|
|
str := "Hellope"
|
|
|
|
println(str, true, 6.28)
|
|
|
|
println([4]int{1, 2, 3, 4})
|
|
}
|