Greatest common divisor: Difference between revisions

Content deleted Content added
Jlp765 (talk | contribs)
m Added Raven code for Greatest common divisor
No edit summary
Line 62: Line 62:
GCD of 7, 23 is 1
GCD of 7, 23 is 1
</pre>
</pre>

=={{header|Aime}}==
<lang aime>o_integer(gcd(33, 77));
o_byte('\n');
o_integer(gcd(49865, 69811));
o_byte('\n');</lang>


=={{header|ALGOL 68}}==
=={{header|ALGOL 68}}==