Roots of Lisp
This article makes the effort to explain the advance to science that was Lisp in the age that John McCarty wrote it and the main concepts about it, its simplicity but also the smartness of it, considering that in this day and age most programming languages that were based in the formula of c are taking lots of inspiration from Lisps and implementing its functions into their own core it is really worth it to know how the Lisps are made from the inside out. It comments that everything is either an atom or a list of expressions and an expression yields a return value, it salso talks about the quote that is a way for telling that we do not want the next list to be evaluated as an expression, because by default every list is an expression the first parameter is going to be considered as a function applied the the next parameters, and if the first parameter is a number or a symbol it will not know what to do with it. And the most important thing is how we can write functions that can act