Files
hakorune/apps/tests/macro/exception/expr_postfix_direct.hako

13 lines
163 B
Plaintext

function f(x) {
return x
}
function main(args) {
local i = 0
loop(i < 2) {
f(i) catch(e) { print(e) } cleanup { print("cleanup") }
i = i + 1
}
}