```fun main() { val num = 1 val text = whe...
# getting-started
s
Copy code
fun main() {
    val num = 1
    val text = when(num){
        0 -> "Zero",
        1 -> "One",
        else -> ""
    }
}
j
This feels like a trick question. Are you getting an error?
v
The commas
🙌 2
j
How did I miss that? I'll see myself out.