The Roots of Lisp
Welcome again to my blog! Thank you for reading me once again, and I'm sorry for my bad sentence creation that has been a common thing in these blogs, I'm really trying my best and I hope one day I can write full essays with ideas that can be understood easily. Today is time to talk about the roots of one of the most consistent programming models of our time, LISP or "List processing". We will try to understand the discovery of McCarthy (the founder of LISP), and where are programming languages heading, so stay put. One of the fundamental parts of LISP are expressions, that can be either an atom (sequence of letters) or a list of zero or more expressions (a b (c) d). These expressions can also return values, if is a list the first element is the operator and the second the argument , and from this we get quote , which in my opinion is something that you don't see in C like programming languages, but it makes all the scenes of the word, ( quote x) returns x.