RosettaCodeData/Task/Integer-comparison/Toka/integer-comparison.toka
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
230 B
Text

[ ( a b -- )
2dup < [ ." a is less than b\n" ] ifTrue
2dup > [ ." a is greater than b\n" ] ifTrue
= [ ." a is equal to b\n" ] ifTrue
] is compare-integers
1 1 compare-integers
2 1 compare-integers
1 2 compare-integers