Very happy with my final solution for today's Advent of Code problem. I used the parseq parser combinator library to chew through the input and get a clean series of multiplied numbers, and :do/:don-t symbols.
https://github.com/coderfrog256/AdventOfCode/blob/main/2024/lisp/Day3.lisp
My first solution was to throw regexes at it, which worked but was not quite as clean.
Next up I'll be looking into how best to write this in Clojure, the loop with mutable state is definitely out! :p