RosettaCodeData/Task/Conditional-structures/Fancy/conditional-structures-1.fancy

4 lines
81 B
Plaintext

if: (x < y) then: {
"x < y!" println # will only execute this block if x < y
}