mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
14 lines
116 B
ObjectPascal
14 lines
116 B
ObjectPascal
{$OPT= -So}
|
|
Unit tbs0196;
|
|
interface
|
|
|
|
function a : integer;
|
|
|
|
implementation
|
|
function a;
|
|
begin
|
|
a:=1;
|
|
end;
|
|
|
|
end.
|