mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 15:51:52 +00:00
7 lines
112 B
Kotlin
Vendored
7 lines
112 B
Kotlin
Vendored
import Enum.*
|
|
|
|
fun use(e: Enum): String =
|
|
when (e) {
|
|
A -> "A"
|
|
B -> "B"
|
|
} |