927280f7ce
(cherry picked from commit 948a4b6)
11 lines
189 B
Kotlin
Vendored
11 lines
189 B
Kotlin
Vendored
// EnumClass
|
|
|
|
enum class EnumClass {
|
|
RED, GREEN, BLUE;
|
|
|
|
fun someFun() {
|
|
System.out.println("Hello, world!")
|
|
}
|
|
|
|
fun stringRepresentation() = this.toString()
|
|
} |