docs: reorganize into 説明書/予定/archive; update docs/README.md and CLAUDE.md; move root .nyash to local_tests; consolidate native-plan notes into README + archive

This commit is contained in:
Moe Charm
2025-08-13 18:19:49 +09:00
parent 7941c4ed6a
commit 621bf7cc3d
154 changed files with 11342 additions and 236 deletions

View File

@ -0,0 +1,20 @@
// 🧪 ArrayBoxの簡単なテスト
print("=== ArrayBox Simple Test ===")
local arr
arr = new ArrayBox()
// 基本的な操作
arr.push("Hello")
arr.push("World")
print("Length: " + arr.length())
print("Get 0: " + arr.get(0))
print("Get 1: " + arr.get(1))
// pop
local item
item = arr.pop()
print("Popped: " + item)
print("Length after pop: " + arr.length())
print("Test completed!")