;; pkg.flan — the directory is the package, and everything it declares ;; arrives qualified by the alias this import chose. (import g "geom") (defn main [] () (let [v (g/add (g/V2 {.x 3.0 .y 0.0}) (g/V2 {.x 0.0 .y 4.0}))] (print (g/length v)) (println "")))