```when (x) { 3 -> println("it's three") ...
# getting-started
b
Copy code
when (x) {
    3 -> println("it's three")
    !(10) -> println("at least its NOT 10 ...")
}