RosettaCodeData/Task/Exceptions/Seed7/exceptions-2.seed7
2023-07-01 13:44:08 -04:00

9 lines
160 B
Text

const proc: main is func
begin
block
foo;
exception
catch RANGE_ERROR:
writeln("catched RANGE_ERROR");
end block;
end func;