packages feed

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

=== Program ===
function main() {
  try {
    1;
    try {
      2;
    } catch(a) {
      print(2);     // should not print this
    }
    throw 1;
  } catch(b) {
    print(1,"\n");  // should print this
  }
}

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

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