NEXT.md prints the banner with the restarts in source order; the walk is innermost-first, so it is the other way round. A --dev build under timeout is enough to settle that, and settles the two place and global snippets with it.
10 lines
292 B
Plaintext
10 lines
292 B
Plaintext
;; 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-f64 (f64 (g/length v)))
|
|
(newline)))
|