mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 12:26:58 +02:00
11 lines
119 B
ObjectPascal
11 lines
119 B
ObjectPascal
{$ifdef fpc}{$goto on}{$endif}
|
|
|
|
label 000,01,1;
|
|
begin
|
|
goto 000;
|
|
writeln('1');
|
|
halt(1);
|
|
000:
|
|
writeln('2');
|
|
end.
|