fpc/tests/webtbs/tw8225.pp
Jonas Maebe 0ffd81e16d * fixed compilation
git-svn-id: trunk@6601 -
2007-02-22 10:14:37 +00:00

24 lines
378 B
ObjectPascal

{$mode delphi}
program test;
const
factor : double = 1.0;
function CheckLongint(count,wcount:longint):double;
begin
result:=(count+wcount)*factor;
end;
function CheckCardinal(count,wcount:cardinal):double;
begin
result:=(count+wcount)*factor;
end;
begin
writeln('LONGINT: ',CheckLongint(3,1));
writeln('CARDINAL: ',CheckCardinal(3,1));
end.