docs: sync documentation for v1.0.0 freeze
ci / build (ubuntu) (push) Has been cancelled
ci / unit + fmt (push) Has been cancelled
ci / examples (push) Has been cancelled
ci / goldens + tools (push) Has been cancelled
ci / apps (push) Has been cancelled
ci / selfhost smoke (push) Has been cancelled
ci / macos smoke (push) Has been cancelled
ci / windows smoke (push) Has been cancelled
ci / CI gate (push) Has been cancelled

Mark LanguageRef as normative, add docs index, update README/Packages/
Stdlib/BuildAndTest status lines, archive PLAN.md and QUALITY_PLAN
pointers to RELEASE_v1.0.0 and active SEMVER.
This commit is contained in:
2026-07-27 22:02:04 +03:00
parent a23860be3e
commit fa1521a71e
9 changed files with 59 additions and 22 deletions
+8 -3
View File
@@ -1,6 +1,11 @@
# Bux Standard Library
The Bux standard library provides core functionality for systems programming. All modules are merged into every compilation, so no explicit linking is needed.
> **Status:** Documented API for **v1.0.0**. Sources live under `lib/`; modules are
> merged into every compilation (no separate link step for stdlib).
The standard library targets systems and cloud-on-Linux programming (I/O, collections,
net/TLS with full runtime, crypto, tasks/channels). Thin/static builds use
`BUX_RUNTIME=minimal` — see [BuildAndTest.md](BuildAndTest.md).
---
@@ -280,8 +285,8 @@ func Main() -> int {
let s: String = String_Replace("hello world", "world", "Bux");
PrintLine(s); // "hello Bux"
let fmt: String = String_Format2("{0} + {1} = magic", "Bux", "QBE");
PrintLine(fmt); // "Bux + QBE = magic"
let fmt: String = String_Format2("{0} + {1} = magic", "Bux", "C");
PrintLine(fmt); // "Bux + C = magic"
let found: String = String_Find("hello world", "world");
if found as uint != 0 {