// πŸ§ͺ ζ–°Boxδ½œζˆγƒ†γ‚Ήγƒˆ - パソッド呼び出しγͺし print("=== New Box Creation Test ===") // πŸ“Š BufferBox Test print("πŸ”Ή Creating BufferBox...") local buffer buffer = new BufferBox() print("βœ… BufferBox created successfully!") // πŸ” RegexBox Test print("πŸ”Ή Creating RegexBox...") local regex regex = new RegexBox("[0-9]+") print("βœ… RegexBox created successfully!") // πŸ“‹ JSONBox Test print("πŸ”Ή Creating JSONBox...") local json json = new JSONBox("{\"name\": \"test\"}") print("βœ… JSONBox created successfully!") // 🌊 StreamBox Test print("πŸ”Ή Creating StreamBox...") local stream stream = new StreamBox() print("βœ… StreamBox created successfully!") // 🌐 HTTPClientBox Test print("πŸ”Ή Creating HTTPClientBox...") local http http = new HTTPClientBox() print("βœ… HTTPClientBox created successfully!") print("\nπŸŽ‰ All Arc Boxes created successfully!")