mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-04 06:27:30 +01:00
10 lines
140 B
ObjectPascal
10 lines
140 B
ObjectPascal
program test;
|
|
function testf (a:byte;b:integer;c:char):char;
|
|
begin
|
|
testf:=c;
|
|
end;
|
|
begin
|
|
writeln('"',testf(0,-1,'A'),'"');
|
|
end.
|
|
|