2023-Jul-07

functional-programming
haskell
til
Author

Ritobrata Ghosh

Published

July 7, 2023

  1. Learned that procedures as data can also be seen and used in Haskell, as well as Scheme/LISP.
ghci> head [(*3), (+10), square] 5
15

I got this from Dmitrii K.’s Haskell course on YouTube. video

Reuse

CC-BY-NC-SA