mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-26 23:44:58 -07:00
19 lines
173 B
Odin
19 lines
173 B
Odin
// #import "game.odin";
|
|
#import "fmt.odin";
|
|
|
|
A :: type struct {
|
|
b: B;
|
|
};
|
|
B :: type struct {
|
|
c: C;
|
|
};
|
|
C :: type struct {
|
|
a: A;
|
|
};
|
|
|
|
|
|
main :: proc() {
|
|
fmt.println(123);
|
|
}
|
|
|