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.
6 lines
190 B
Plaintext
6 lines
190 B
Plaintext
;; geom/vec.flan — no package declaration: the name comes from the directory.
|
|
(defstruct V2 [x f32 y f32])
|
|
|
|
(defn add [a V2 b V2] V2
|
|
(V2 {:x (+ (.x a) (.x b)) :y (+ (.y a) (.y b))}))
|