mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
9 lines
193 B
Plaintext
Vendored
9 lines
193 B
Plaintext
Vendored
>>> enum class Build { Debug, Release }
|
|
|
|
>>> fun applySomething(build: Build) = when (build) {
|
|
... Build.Debug -> "OK"
|
|
... Build.Release -> "fail"
|
|
...}
|
|
>>> applySomething(Build.Debug)
|
|
OK
|