One thing that has really caught my attention as I learn more programming languages is the idea of generators or infinite sequences of values. Yes, infinite. Coming from R, that seems unlikely, but in at least several other languages, it’s entirely possible thanks to iterators and lazy evaluation. I saw this video which solves a codewars challenge using an infinite list, which references this one on the same topic. First, a diversion into recursion A timely combination. @rverbsr In Haskell,...