Files
Odin/code/demo.odin
T
2016-09-15 00:53:00 +01:00

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