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