mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:29:34 +02:00
9 lines
139 B
ObjectPascal
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.
|