6 lines
147 B
Text
6 lines
147 B
Text
|
|
on compare (a, b)
|
||
|
|
if a < b then put a&" is less than "&b
|
||
|
|
if a = b then put a&" is equal to "&b
|
||
|
|
if a > b then put a&" is greater than "&b
|
||
|
|
end
|