mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 06:38:47 +00:00
10 lines
106 B
Odin
10 lines
106 B
Odin
// #import "game.odin";
|
|
#import "fmt.odin";
|
|
|
|
x := type_info(int);
|
|
|
|
main :: proc() {
|
|
fmt.println(123);
|
|
}
|
|
|