Welcome to the Fall 2021 SICP course at Bennington College, where we will work our way through the "wizard book", a classic CS textbook that takes a deep dive into fundamental programming concepts using the Scheme minimalistic dialect of Lisp.
"I read a draft version of the book around 1982, when I was in grad school, and it changed the way I think about my profession. If you're a thoughtful computer scientist (or want to be one), it will change your life too." - Peter Norvig, Google's director of research
(define hello (λ () (display "Hello world!\n")))
(hello)