16 lines
284 B
Plaintext
16 lines
284 B
Plaintext
|
|
static box Main {
|
||
|
|
main(args) {
|
||
|
|
local console = new ConsoleBox()
|
||
|
|
try {
|
||
|
|
console.println("T")
|
||
|
|
return 10
|
||
|
|
} catch (Error e) {
|
||
|
|
// 例外なし → ここは通らない想定
|
||
|
|
console.println("C")
|
||
|
|
} finally {
|
||
|
|
console.println("F")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|