Files
distribution/tests/smoke.sx
agra 6c19f1073f lang migration: rename signed integer types sN -> iN
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.
2026-06-12 09:39:49 +03:00

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;
}