Florian
08/28/2019, 9:53 AM<
etc are not supported in when
(I mean in the same way as in
and is
)Luca Nicoletti
08/28/2019, 11:37 AMLuca Nicoletti
08/28/2019, 11:37 AMwhen(position) { in 0..3 -> {} }
Matteo Mirk
08/28/2019, 12:02 PMval i = 42
when {
i < 10 -> println("low")
i >= 10 -> println("hi")
}