mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-07 13:33:13 +00:00
11 lines
155 B
Odin
11 lines
155 B
Odin
#import "fmt.odin";
|
|
|
|
main :: proc() {
|
|
Fruit :: enum f32 {
|
|
Apple = 123,
|
|
Pear = 321,
|
|
Tomato,
|
|
}
|
|
fmt.printf("%s = %f\n", Fruit.Apple, Fruit.Apple);
|
|
}
|