Files
hakorune/tests/development/test_simple_constructor.nyash

15 lines
200 B
Plaintext

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