Files
Odin/code/demo.odin
T

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()
}