d6b568005f
Original commit: 0cf2928761
8 lines
133 B
Plaintext
8 lines
133 B
Plaintext
import Enum.*
|
|
|
|
fun use(e: Enum): String =
|
|
when (e) {
|
|
A -> "A"
|
|
B -> "B"
|
|
C -> "C"
|
|
} |