miniblog.

← Back to all posts
Copilot was super helpful for changing some locals to lazy_static!: let integer_re = Regex::new(...) // old static ref INTEGER_RE = Regex::new(...) // new Unfortunately, it added a $ to the end of my first regex! It saved me a ton of keystrokes, but needed careful checking.