mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
b76a5c5284
Trivial as it is...
15 lines
283 B
ObjectPascal
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.
|