Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ eigenscript examples/stem/greenhouse_controller.eigs # closed-loop STEM controll

```bash
cd tests
./run_all_tests.sh # 2,000+ checks (minimal build; full build adds HTTP/DB/model suites)
./run_all_tests.sh # 2,500+ checks (minimal build; full build adds HTTP/DB/model suites)
```

### Writing your own tests
Expand Down Expand Up @@ -416,7 +416,7 @@ Full map: **[docs/README.md](docs/README.md)**. Highlights:
- [docs/SYNTAX.md](docs/SYNTAX.md) — tutorial-style language guide
- [docs/GRAMMAR.md](docs/GRAMMAR.md) — formal EBNF grammar
- [docs/LANGUAGE_CONTRACT.md](docs/LANGUAGE_CONTRACT.md) — edge-case promises
- [docs/BUILTINS.md](docs/BUILTINS.md) — 150+ builtin functions (130 core + 20 extensions)
- [docs/BUILTINS.md](docs/BUILTINS.md) — 250+ builtin functions (199 core + ~60 extensions)
- [docs/STDLIB.md](docs/STDLIB.md) — standard library guide
- [docs/DIAGNOSTICS.md](docs/DIAGNOSTICS.md) — error format and exit codes
- [docs/TRACE.md](docs/TRACE.md) — execution trace, deterministic replay, temporal interrogatives
Expand Down Expand Up @@ -466,7 +466,7 @@ get made and how contributors can earn commit access over time.

```bash
make # build
make test # build and run the full suite (1,800+ checks)
make test # build and run the full suite (2,500+ checks)
make gfx # build with SDL2 graphics (UI toolkit, games)
make install # install to ~/.local/bin
make clean # remove build artifacts
Expand Down
2 changes: 1 addition & 1 deletion docs/ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ The minimal build (`make build`) sets all flags to 0. The full build

## Standard Library

The 49 modules in `lib/` are pure EigenScript — no C code. They are loaded at
The 73 modules in `lib/` are pure EigenScript — no C code. They are loaded at
runtime via `load_file of "lib/module.eigs"`. Path resolution searches relative
to the executable's directory, then the current working directory, then the
script's directory.
Expand Down
2 changes: 1 addition & 1 deletion docs/BUILTINS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EigenScript Builtin Reference

200+ builtins organized by module (160+ core + 45 extensions).
250+ builtins organized by module (199 core + ~60 extensions).
Core builtins are always available; extension builtins (HTTP, DB, model,
gfx, audio) require a full build or the `gfx` target.

Expand Down
Loading