;;;; A package imported and never called into. ;;;; ;;;; raylib is here, so before Reach.link this program linked libraylib — and ;;;; on wasm32 it could not be built at all. The link now follows what the ;;;; program reaches rather than what it imports, so main's one print is the ;;;; whole of it and the same file builds for both targets. (import rl "vendor:raylib") (defn main [] i32 (print-line "ok") 0)