mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 14:48:51 +02:00
17 lines
300 B
ObjectPascal
17 lines
300 B
ObjectPascal
{ Old file: tbs0296.pp }
|
|
{ exit(string) does not work (web form bugs 613) OK 0.99.13 (PM) }
|
|
|
|
|
|
function test : string;
|
|
|
|
begin
|
|
test:='This should not be printed';
|
|
exit('this should be printed');
|
|
end;
|
|
|
|
begin
|
|
writeln(test);
|
|
if test<>'this should be printed' then
|
|
Halt(1);
|
|
end.
|