8 lines
264 B
Text
8 lines
264 B
Text
* # Get user input
|
|
output = 'Enter X,Y:'
|
|
trim(input) break(',') . x ',' rem . y
|
|
|
|
output = lt(x,y) x ' is less than ' y :s(end)
|
|
output = eq(x,y) x ' is equal to ' y :s(end)
|
|
output = gt(x,y) x ' is greater than ' y
|
|
end
|