13 lines
227 B
Plaintext
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")
|
|
}
|
|
}
|
|
}
|