packages feed

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

=== Program ===
var x;

function main() {
  x = 5;
  try {
    throw 3;
    print(x);       // should not print this
  } catch(y) {
    print(y,"\n");  // should print this
  }
}

// 3
=== Output ===
Result:
null-value

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