e4a172946b
#KT-3368 Fixed
10 lines
167 B
Kotlin
10 lines
167 B
Kotlin
enum class Color : Runnable {
|
|
WHITE
|
|
BLACK
|
|
RED
|
|
YELLOW
|
|
BLUE
|
|
public override fun run() : Unit {
|
|
System.out?.println("name()=" + name() + ", toString()=" + toString())
|
|
}
|
|
} |