Files
advent-of-code/2022/lib.lisp
Aryadev Chavali 07a5f754da Update lib.lisp to be more imperative and include a threading macro
Instead of (f (g (h (j (k x))))) we can write
(-> (k x)
    (j it)
    (h it)
    (g it)
    (f it))

which is works really well for particularly large and complicated
expressions.
2024-10-30 22:33:27 +00:00

1.3 KiB