mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 18:02:22 -07:00
16 lines
144 B
Odin
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
|
|
}
|
|
}
|
|
}
|
|
|