RosettaCodeData/Task/Exceptions/Delphi/exceptions-3.pas
2024-10-16 18:07:41 -07:00

8 lines
96 B
ObjectPascal

procedure test3;
begin
try
test2;
finally
ShowMessage('test3 finally');
end;
end;