Files
hakorune/local_tests/test_instance_v2_integration.hako

13 lines
363 B
Plaintext
Raw Permalink Normal View History

// 🎯 Phase 9.78d: InstanceBox統合動作テスト
// StringBoxがInstanceBoxとして作成されることを確認
local str
str = new StringBox("Hello InstanceBox\!")
print("StringBox created: " + str)
// 基本メソッドテスト
print("Type: " + str.type_name())
print("String value: " + str.toString())
print("✅ InstanceBox統合テスト完了")