RosettaCodeData/Task/Exceptions/Seed7/exceptions-2.seed7
Ingy döt Net 6f050a029e update
2013-06-05 21:47:54 +00: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;