Integer comparison: Difference between revisions

Content added Content deleted
(Undo revision 24787 by 62.194.126.7 (Talk) need to use all three operators)
Line 379: Line 379:


=={{header|Modula-3}}==
=={{header|Modula-3}}==
<lang modula3>MODULE Main;
<pre>
MODULE Main;


FROM IO IMPORT Put, GetInt;
FROM IO IMPORT Put, GetInt;
Line 397: Line 396:
Put(Int(a) & " is greater than " & Int(b) & "\n");
Put(Int(a) & " is greater than " & Int(b) & "\n");
END;
END;
END Main.
END Main.</lang>
</pre>


=={{header|Oberon-2}}==
=={{header|Oberon-2}}==