Fix exact value bug when updating expressions

This commit is contained in:
Ginger Bill
2016-10-16 00:26:53 +01:00
parent 79af939522
commit b9719df0ad
8 changed files with 86 additions and 52 deletions

View File

@@ -1,6 +1,13 @@
#import "fmt.odin"
main :: proc() {
Thing :: struct {
f: f32
a: any
}
t := Thing{1, "Hello"}
fmt.printf("Here % %\n", 123, 2.0)
}