funcons-simple-0.1.0.3: tests/Kexceptions/Kexceptions01.output
=== Program ===
function main() {
var e = 100;
try {
var x = 5;
if (x >= 0) {
throw x+2;
}
print(20); // should not be printed
} catch(e) {
print(e," "); // should print 7
}
print(e," "); // should print 100
print(10,"\n");
}
// 7 100 10
=== Output ===
Result:
null-value
Output Entity: standard-out
7," ",100," ",10,"\n"