mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 10:52:22 -07:00
11 lines
149 B
Odin
11 lines
149 B
Odin
#import "print.odin"
|
|
|
|
test_proc :: proc() {
|
|
println("Hello?")
|
|
}
|
|
|
|
|
|
main :: proc() {
|
|
println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
|
|
}
|