4 lines
72 B
Scala
Raw Normal View History

2022-04-07 18:43:21 +02:00
object IfCondition {
if (val x: Boolean = true; x) { 1 } else { 2 }
}