mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 04:58:06 +02:00
11 lines
115 B
ObjectPascal
11 lines
115 B
ObjectPascal
{ %norun }
|
|
{$inline on}
|
|
procedure p(const s : ansistring);inline;
|
|
begin
|
|
writeln(s[1]);
|
|
end;
|
|
|
|
begin
|
|
p('');
|
|
end.
|