Files
hakorune/apps/tests/try_finally_normal.nyash

13 lines
227 B
Plaintext

static box Main {
main(args) {
local console = new ConsoleBox()
try {
console.println("T")
return 123
} cleanup {
// finally は必ず実行される想定
console.println("F")
}
}
}