12 lines
156 B
Kotlin
12 lines
156 B
Kotlin
enum class Direction() {
|
|
NORTH {
|
|
val someSpecialValue = "OK"
|
|
}
|
|
|
|
SOUTH
|
|
WEST
|
|
EAST
|
|
}
|
|
|
|
fun box() = Direction.NORTH.someSpecialValue
|