Hacker News new | ask | show | jobs
by avindroth 851 days ago
For those who have the book, what is contained in the "discussion of the interactive Lisp programming process" as mentioned by Paolo?
1 comments

The discussion basically says you don't follow an edit the full program-compile-run cycle like in other languages with batch compilers. Instead, you interactively create a program by writing individual expressions (e.g. function definitions) in the editor, sending them to the REPL for evaluation and testing, further experimenting at the REPL, and repeating the cycle. If you're already familiar with Lisp environments there's nothing new in the book.