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

9 lines
96 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
procedure test3;
begin
try
test2;
finally
ShowMessage('test3 finally');
end;
end;