packages feed

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

=== Program ===
var i, j;

function main() {
  i = 0;
  while (++i <= 3) {
    print(i," ");
  }
  try {
    i = 10;
    print(i," ");
  } catch(j) {
    i = 20;
    print(i);  // should not print this
  }
  i = 15;
  print(i,"\n");
}

// 1 2 3 10 15
=== Output ===
Result:
null-value

Output Entity: standard-out
1," ",2," ",3," ",10," ",15,"\n"