phase: 20.49 COMPLETE; 20.50 Flow+String minimal reps; 20.51 selfhost v0/v1 minimal (Option A/B); hv1-inline binop/unop/copy; docs + run_all + CURRENT_TASK -> 21.0

This commit is contained in:
nyash-codex
2025-11-06 15:41:52 +09:00
parent 2dc370223d
commit 77d4fd72b3
1658 changed files with 6288 additions and 2612 deletions

View File

@ -0,0 +1,31 @@
// 🧪 基本的な新Box テスト
print("=== Basic New Boxes Test ===")
// 📦 ArrayBox Test (already working)
print("\n✅ ArrayBox:")
local arr
arr = new ArrayBox()
arr.push("test")
print("ArrayBox works: " + arr.length())
// 🗄️ MapBox Test (already working)
print("\n✅ MapBox:")
local map
map = new MapBox()
map.set("key", "value")
print("MapBox works: " + map.size())
// 📊 BufferBox Test
print("\n🔹 BufferBox:")
local buffer
buffer = new BufferBox()
print("BufferBox created: " + buffer.toString())
// 🔍 RegexBox Test
print("\n🔹 RegexBox:")
local regex
regex = new RegexBox("[0-9]+")
print("RegexBox created: " + regex.toString())
print("\n🎉 Basic new Box creation tests completed!")