release: Bux v1.0.0 language 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
selfhost-loop / bootstrap determinism (push) Has been cancelled

Bump compiler banners and package version to 1.0.0, activate SEMVER policy,
and add RELEASE_v1.0.0 notes. Fix closure auto-Drop leaking outer Array
drops into nested capture bodies (iter_hof). Fmt-clean examples/src for CI.
This commit is contained in:
2026-07-27 21:49:12 +03:00
parent d60ce2bc3f
commit a23860be3e
16 changed files with 384 additions and 308 deletions
+5 -5
View File
@@ -12,11 +12,11 @@ func HealthBody() -> String {
func BuildHttp(body: String) -> String {
let n: int = String_Len(body) as int;
return String_Concat(
String_Concat(
"HTTP/1.1 200 OK\r\nContent-Type: application/json\r\nContent-Length: ",
String_FromInt(n as int64)
),
String_Concat("\r\nConnection: close\r\n\r\n", body)
String_Concat(
"HTTP/1.1 200 OK\r\nContent-Type: application/json\r\nContent-Length: ",
String_FromInt(n as int64)
),
String_Concat("\r\nConnection: close\r\n\r\n", body)
);
}