3 lines
81 B
Text
3 lines
81 B
Text
if: (x < y) then: {
|
|
"x < y!" println # will only execute this block if x < y
|
|
}
|