// lisp — entry point. The interpreter lives in `lispcore.ww`; this // file only wires it to `main()` so `ww build lisp.ww` produces the // REPL binary. The matching tests live in `lisp_test.ww` and pull // the same module via `use lispcore;`. use lispcore; export fn main() i32 = { return lispcore.repl(); };