pascalscript/Samples/Import/t10.rops

13 lines
187 B
Plaintext
Raw Normal View History

Program test;
begin
writeln('1');
try
writeln('2');
raiseexception(erCustomError, 'TEST EXCEPTION');
writeln('3');
finally
writeln('4');
end;
writeln('5');
end.