Untyped nil

This commit is contained in:
Ginger Bill
2016-10-06 17:11:17 +01:00
parent fee504636f
commit 50301557b2
28 changed files with 8078 additions and 8567 deletions
+11 -5
View File
@@ -1,9 +1,15 @@
#import "fmt.odin"
#import "utf8.odin"
#import "hash.odin"
#import "mem.odin"
#import "game.odin"
A :: {2}f32{1, 2}
B :: {2}f32{3, 4}
main :: proc() {
fmt.println("Hellope")
Fruit :: union {
A: int
B: f32
C: struct {
x: int
}
}
}