mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 02:12:22 -07:00
8 lines
84 B
Odin
8 lines
84 B
Odin
// #import "game.odin";
|
|
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
fmt.println(123);
|
|
}
|
|
|