RosettaCodeData/Task/Enumerations/Fantom/enumerations-2.fantom

8 lines
177 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// 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 }
}