pascalscript/Samples/Import/exittest.rops

14 lines
145 B
Plaintext
Raw Normal View History

Program IFSTest;
procedure test;
begin
writeln('1');
exit;
writeln('2');
end;
Begin
test;
writeln('3');
exit;
writeln('4');
End.