mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
13 lines
190 B
Kotlin
Vendored
13 lines
190 B
Kotlin
Vendored
enum class Direction() {
|
|
NORTH {
|
|
val someSpecialValue = "OK"
|
|
|
|
override fun f() = someSpecialValue
|
|
};
|
|
|
|
|
|
abstract fun f():String
|
|
}
|
|
|
|
fun box() = Direction.NORTH.f()
|