mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-27 08:43:55 +00:00
Fix exact value bug when updating expressions
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user