packages feed

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

=== Program ===
function main() {
  var e;
  try {
    var x = 2;
    print(x," ");
    throw ++x + x;
  }
  catch(e) {
    print(e,"\n");
  }
}

// 2 6 or 2 5
=== Output ===
Result:
null-value

Output Entity: standard-out
2," ",6,"\n"