Files
hakorune/apps/tests/try_finally_normal.nyash

14 lines
228 B
Plaintext
Raw Normal View History

2025-09-15 22:14:42 +09:00
static box Main {
main(args) {
local console = new ConsoleBox()
try {
console.println("T")
return 123
} finally {
// finally は必ず実行される想定
console.println("F")
}
}
}