18 lines
298 B
Plaintext
18 lines
298 B
Plaintext
|
|
// MessageHub単体テスト
|
||
|
|
|
||
|
|
print("=== MessageHub Only Test ===")
|
||
|
|
|
||
|
|
box MessageHub {
|
||
|
|
init { name }
|
||
|
|
|
||
|
|
hello() {
|
||
|
|
print("MessageHub says hello")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
print("Creating MessageHub...")
|
||
|
|
local hub
|
||
|
|
hub = new MessageHub()
|
||
|
|
print("Calling hello...")
|
||
|
|
hub.hello()
|
||
|
|
print("Test completed!")
|