13 lines
211 B
Plaintext
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
|
||
|
|
}
|
||
|
|
}
|