mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-14 09:52:23 -07: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);
|
|
}
|