fix: module syntax — changed src_bux/*.bux from module X; to module X { ... }

This commit is contained in:
2026-05-31 14:14:42 +03:00
parent 3c2a6e68b9
commit f4de065160
15 changed files with 632 additions and 628 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
// manifest.bux — Manifest parser for bux.toml files
// Parses package metadata: name, version, type, build output.
module Manifest;
module Manifest {
// ---------------------------------------------------------------------------
// Manifest struct
@@ -82,4 +82,4 @@ func Manifest_Parse(content: String) -> Manifest {
func Manifest_Load(path: String) -> Manifest {
let content: String = ReadFile(path);
return Manifest_Parse(content);
}
}