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