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.
5 lines
237 B
Plaintext
5 lines
237 B
Plaintext
;; geom/len.flan — a second file in the same directory shares one top-level
|
|
;; scope: it does not import vec.flan, and the order of the two does not matter.
|
|
(defn length [v V2] f32
|
|
(sqrt-f32 (+ (* (.x v) (.x v)) (* (.y v) (.y v)))))
|