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