packages feed

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

=== Program ===
var x, y, z;

function g() {
  throw 15;
}

function f() {
  g();
}

function main() {
  x = 5;
  y = 10;

  try {
    f();
  } catch(y) {
    print(y," ");
  }
  print(x," ");
  print(y,"\n");
}

// 15 5 10
=== Output ===
Result:
null-value

Output Entity: standard-out
15," ",5," ",10,"\n"