RosettaCodeData/Task/Exceptions/DWScript/exceptions-3.dwscript

9 lines
99 B
Text
Raw Normal View History

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