15 lines
200 B
Plaintext
15 lines
200 B
Plaintext
|
|
// シンプルなコンストラクタテスト
|
|
box TestBox {
|
|
init { value }
|
|
|
|
constructor() {
|
|
me.value = "default"
|
|
}
|
|
}
|
|
|
|
local t
|
|
t = new TestBox()
|
|
print("Value: " + t.value)
|
|
|