// 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!")