RosettaCodeData/Task/Exceptions/Delphi/exceptions-3.pas

9 lines
96 B
ObjectPascal
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
procedure test3;
begin
try
test2;
finally
ShowMessage('test3 finally');
end;
end;