2022-04-07 18:43:21 +02:00

12 lines
105 B
Scala

object IfCondition {
(if((
val x: Boolean =
true;
x
)) {
1
} else {
2
})
}