mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
15 lines
254 B
Odin
15 lines
254 B
Odin
#import "fmt.odin" as fmt
|
|
// #import "game.odin" as game
|
|
|
|
test_proc :: proc() {
|
|
fmt.println("Hello?")
|
|
}
|
|
|
|
|
|
main :: proc() {
|
|
x := 0
|
|
// fmt.println("% % % %", "Hellope", true, 6.28, {4}int{1, 2, 3, 4})
|
|
fmt.println("%(%)", #file, #line)
|
|
// game.run()
|
|
}
|