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