Add my QuakePascal test program.

Trivial as it is...
This commit is contained in:
Bill Currie 2011-01-17 22:44:58 +09:00
parent ea3895805b
commit b76a5c5284
1 changed files with 15 additions and 0 deletions

15
tools/qfcc/test/gcd.pas Normal file
View File

@ -0,0 +1,15 @@
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.