mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 17:59:06 +02:00
12 lines
146 B
ObjectPascal
12 lines
146 B
ObjectPascal
|
|
function test : string;
|
|
|
|
begin
|
|
test:='This should not be printed';
|
|
exit('this should be printed');
|
|
end;
|
|
|
|
begin
|
|
writeln(test);
|
|
end.
|