funcons-simple-0.1.0.3: tests/Basic/Basic18.output
=== Program ===
function main() {
try {
print(1);
throw("exc");
print(2);
} catch(x)
{
print(3);
print(x);
}
}=== Output ===
Result:
null-value
Output Entity: standard-out
1,3,"exc"