Repository URL to install this package:
|
Version:
1.6 ▾
|
lazarus
/
usr
/
share
/
lazarus
/
1.6
/
components
/
PascalScript
/
Samples
/
Import
/
exittest.rops
|
|---|
Program IFSTest;
procedure test;
begin
writeln('1');
exit;
writeln('2');
end;
Begin
test;
writeln('3');
exit;
writeln('4');
End.