packages feed

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

=== Program ===
function main() {
  try {
    throw 4;
  } catch (e) {
    print(e," ");
  }
  print(42,"\n");
}

// 4 42
=== Output ===
Result:
null-value

Output Entity: standard-out
4," ",42,"\n"