packages feed

funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions3.output

=== Program ===
function main() {
  var x = 1;
  try { x = x + 1; throw x; x = x/0;}     // division by zero unreachable
  catch(y) {x = y+1;}
  print(x,"\n");
}

// 3
=== Output ===
Result:
()

Output Entity: standard-out
[3,"\n"]