mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-23 14:14:59 -07:00
9 lines
94 B
Odin
9 lines
94 B
Odin
#import "fmt.odin"
|
|
#import "game.odin"
|
|
|
|
main :: proc() {
|
|
fmt.println("Hello")
|
|
game.run()
|
|
|
|
}
|