mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-11 22:01:25 -07:00
14 lines
142 B
Odin
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)
|
|
}
|
|
|