RosettaCodeData/Task/Enumerations/Fantom/enumerations-2.fantom
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
177 B
Text

// create an enumeration with explicit values
enum class Fruits_
{
apple (1), banana (2), orange (3)
const Int value
private new make (Int value) { this.value = value }
}