RosettaCodeData/Task/Integer-comparison/Relation/integer-comparison.relation
2023-07-01 13:44:08 -04:00

11 lines
124 B
Text

set a = 15
set b = 21
if a > b
' a is bigger than b
else
if b > a
' b is bigger than a
else
' a is equal to b
end if
end if