fpc/tests/webtbs/tw0802.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

9 lines
139 B
ObjectPascal

program test;
function testf (a:byte;b:integer;c:char):char;
begin
testf:=c;
end;
begin
writeln('"',testf(0,-1,'A'),'"');
end.