9 lines
145 B
Text
9 lines
145 B
Text
|
|
!YS-v0
|
||
|
|
|
||
|
|
defn main(x y):
|
||
|
|
say:
|
||
|
|
cond:
|
||
|
|
x < y: "$x is less than $y"
|
||
|
|
x > y: "$x is greater than $y"
|
||
|
|
else : "$x is equal to $y"
|