Infinite Fibonacci List with Haskell ZipWith

1 · Mikail Khan · Feb. 16, 2021, midnight
For my first post in the cool-code-snippets series I'll write about one of my favorite pieces of code: ```hs fibs = 1 : 1 : zipWi......