Remove duplicates in type info data.

This commit is contained in:
Ginger Bill
2016-09-09 19:48:28 +01:00
parent 56dd12c54c
commit 1ca752ce04
9 changed files with 388 additions and 140 deletions
+6 -1
View File
@@ -1,5 +1,10 @@
#load "basic.odin"
Vector3 :: struct { x, y, z: f32 }
main :: proc() {
println(137, "Hello", 1.25, true)
v := Vector3{1, 4, 9}
println(123, "Hello", true, 6.28)
println([4]int{1, 2, 3, 4})
}