15 lines
308 B
Plaintext
15 lines
308 B
Plaintext
// 最もシンプルなMathBoxテスト
|
|
|
|
static box Main {
|
|
init { console }
|
|
|
|
main() {
|
|
me.console = new ConsoleBox()
|
|
me.console.log("Creating MathBox...")
|
|
|
|
local math = new MathBox()
|
|
me.console.log("MathBox created!")
|
|
|
|
return "done"
|
|
}
|
|
} |