Mechanical sweep of all .sx sources and plan docs (PLAN.md, current/, .agents/) for the sx language rename (s8/s16/s32/s64 -> i8/i16/i32/i64). Verified: make build + make test, 14/14.
10 lines
328 B
Plaintext
10 lines
328 B
Plaintext
// Smoke test: proves the sx toolchain is wired end-to-end from this repo —
|
|
// the standard library import resolves, the program runs, and it exits 0.
|
|
// The runner (tests/run.sh) treats a clean exit as `ok`.
|
|
#import "modules/std.sx";
|
|
|
|
main :: () -> i32 {
|
|
print("distribution smoke test: toolchain ok\n");
|
|
return 0;
|
|
}
|