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