hpr2942 :: Why I love lisps
A very wooden and scripted episode about why I love the lisp programming language family
Hosted by Nihilazo on Tuesday, 2019-11-12 is flagged as Clean and is released under a CC-BY-SA license.
lisp, programming.
4.
The show is available on the Internet Archive at: https://archive.org/details/hpr2942
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:08:29
general.
Syntax example
(define (fib-rec n)
(if (< n 2)
n
(+ (fib-rec (- n 1))
(fib-rec (- n 2)))))
Structured Editing
Parinfer: https://shaunlebron.github.io/parinfer/
Paredit: https://www.emacswiki.org/emacs/ParEdit
Clojure libraries
core.match (adds pattern matching): https://github.com/clojure/core.match
core.logic (prolog-like stuff): https://github.com/clojure/core.logic
overtone: https://github.com/overtone/overtone
Other stuff
Clojure macro explanation: https://learnxinyminutes.com/docs/clojure-macros/
Books
The little schemer: https://mitpress.mit.edu/books/little-schemer-fourth-edition
Clojure for the brave and true: https://www.braveclojure.com/