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

@ -321,7 +321,7 @@ pub struct NamespaceRegistry {
### 📁 nyash.link対応
```toml
[dependencies]
mylib = { path = "./mylib.nyash" }
mylib = { path = "./mylib.hako" }
# using mylib # Phase 2で対応
```
@ -330,7 +330,7 @@ mylib = { path = "./mylib.nyash" }
### Phase 0テスト
```nyash
# test_phase0_basic.nyash
# test_phase0_basic.hako
using nyashstd
# 基本動作
@ -347,7 +347,7 @@ try {
### Phase 1テスト
```nyash
# test_phase1_qualified.nyash
# test_phase1_qualified.hako
# using不要のテスト
assert(nyashstd.string.upper("hello") == "HELLO")
assert(nyashstd.math.sin(0) == 0)
@ -355,7 +355,7 @@ assert(nyashstd.math.sin(0) == 0)
### Phase 2テスト
```nyash
# test_phase2_external.nyash
# test_phase2_external.hako
using mylib
assert(mylib.custom.process("data") == "processed: data")