RosettaCodeData/Task/Integer-comparison/HicEst/integer-comparison.hicest

10 lines
244 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
DLG(NameEdit=a, NameEdit=b, Button='OK')
IF (a < b) THEN
WRITE(Messagebox) a, ' is less than ', b
ELSEIF(a == b) THEN
WRITE(Messagebox) a, ' is equal to ', b
ELSEIF(a > b) THEN
WRITE(Messagebox) a, ' is greater than ', b
ENDIF