Files
Odin/code/demo.odin
T
2016-10-16 00:26:53 +01:00

14 lines
142 B
Odin

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