quakeforge/tools/qfcc/test/gcd.pas
Bill Currie b76a5c5284 Add my QuakePascal test program.
Trivial as it is...
2011-01-17 22:44:58 +09:00

15 lines
283 B
ObjectPascal

program example (input, output);
var x, y: integer;
procedure printf (format:string; ...) := #0;
function gcd (a, b: integer): integer;
var c: quaternion;
begin
if b = 0 then gcd := a
else gcd := gcd (b, a mod b)
end;
begin
x := 130;
y := 120;
printf ("%d\n", gcd (x, y))
end.