Phase 10.7/10.5c: include cycle detection (VM/Interpreter), minimal pyc IR→Nyash, String unification bridge (VM partial), add core plugins: RegexBox/EncodingBox/TOMLBox/PathBox + examples; wire nyash.toml; begin String interop for internal vs plugin boxes; update CURRENT_TASK.md

This commit is contained in:
Moe Charm
2025-08-30 23:47:08 +09:00
parent c13d9c045e
commit 4ae92cfb56
39 changed files with 3217 additions and 69 deletions

8
examples/path_min.nyash Normal file
View File

@ -0,0 +1,8 @@
static box Main {
main() {
local p = new PathBox()
local j = p.join("/usr", "bin")
local b = p.basename(j)
return b
}
}