10 lines
135 B
Kotlin
10 lines
135 B
Kotlin
enum class Color {
|
|
WHITE
|
|
BLACK
|
|
RED
|
|
YELLOW
|
|
BLUE
|
|
override fun toString(): String {
|
|
return "COLOR"
|
|
}
|
|
} |