Files
hakorune/apps/tests/method_postfix_finally_only.nyash

13 lines
211 B
Plaintext

static box Main {
main(args) {
// try body: compute a value
local x = 41
// no return here; finally will return
}
cleanup {
// finally runs and returns x+1
x = x + 1
return x
}
}