Files
Odin/code/demo.odin
T
Ginger Bill 50301557b2 Untyped nil
2016-10-06 17:11:17 +01:00

16 lines
144 B
Odin

#import "fmt.odin"
A :: {2}f32{1, 2}
B :: {2}f32{3, 4}
main :: proc() {
Fruit :: union {
A: int
B: f32
C: struct {
x: int
}
}
}