I've read The Nature of Lisp. The only thing I really got out of that was "code is data." But without defining what these terms mean and why they are usually thought to be separate, I gain no insight. My initial reaction to "code is data" is, so what?
|
|
Write Lisp code. The only way to really 'get' Lisp (or any language, for that matter) is to roll up your sleeves and implement some things in it. Like anything else, you can read all you want, but if you want to really get a firm grasp on what's going on, you've got to step outside the theoretical and start working with the practical. |
||||||||||||||||
|
|
|
I think to learn anything you have to have a purpose for it, such as a simple project. For Lisp, a good simple project is a symbolic differentiator, so for example
and then you need a simplifier, such as
so if you start with a math expression, you can eval it to get its value, and you can eval its derivative to get its derivative. I hope this illustrates what can happen when program code manipulates program code. As Marvin Minsky observed, computer math is always worried about accuracy and roundoff error, right? Well, this is either exactly right or completely wrong! |
|||
|
|
|
|
Read and understand the legendary page 13 of the Lisp 1.5 Programmer's Manual
|
|||
|
|
|
|
In Common Lisp, "code is data" boils down to this. When you write, for example:
your Lisp system will parse that text and generate a list with three elements: the symbol ADD, and the numbers 1 and 2. So now they're data. You can do whatever you want with them, replace elements, insert other stuff, etc. The fun part is that you can pass this data on to the compiler and, because you can manipulate these data structures using Lisp itself, this means you can write programs that write other programs. This is not as complicated as it sounds, and Lispers do it all the time using macros. So, just get a book about Lisp, and try it out. |
|||
|
|
|
|
I would suggest checking out some of the newer variants of Lisp like Arc or Clojure. They clean up the syntax a little and are smaller and thus easier to understand than Common Lisp. Clojure would be my choice. It is written on the JVM and so you don't have the issues with various platform implementations and library support that exist with some Lisp implementations like SBCL. |
|||
|
|
|
|
The old fashioned view: 'it' is interactive computation with symbolic expressions. Lisp enables easy representation of all kinds of expressions: english sentence
math
rules
and also Lisp itself
and many many many more. Lisp now allows to write programs that compute with such expressions:
Interactive means that programming is a dialog with Lisp. You enter an expression and Lisp computes the side effects (for example output) and the value. So your programming session is like 'talking' with the Lisp system. You work with it until you get the right answers. What are these expressions? They are sentences in some language. They are part descriptions of turbines. They are theorems describing a floating point engine of an AMD processor. They are computer algebra expressions in physics. They are descriptions of circuits. They are rules in a game. They are descriptions of behavior of actors in games. They are rules in a medical diagnosis system. Lisp allows you to write down facts, rules, formulas as symbolic expressions. It allows you to write programs that work with these expressions. You can compute the value of a formula. But you can equally easy write programs that compute new formulas from formulas (symbolic math: integrate, derive, ...). That was Lisp designed for. As a side effect Lisp programs are represented as such expressions too. Then there is also a Lisp program that evaluates or compiles other Lisp programs. So the very idea of Lisp, the computation with symbolic expressions, has been applied to Lisp itself. Lisp programs are symbolic expressions and the computation is a Lisp expression. Alan Kay (of Smalltalk fame) calls the original definition of Lisp evaluation in Lisp the Maxwell's equations of programming. |
|||
|
|
|
Read On Lisp and Paradigms in Artificial Intelligence Programming. Both of these have excellent coverage of Lisp macros - which really make the code is data concept real. Also, when writing Lisp, don't iterate when you can recurse or map (learn to love mapcar). |
||||
|
|
|
This may be helpful: http://www.defmacro.org/ramblings/fp.html (isn't about LISP but about functional programming as a paradigm) |
|||
|
|
|
The first step is forgetting everything you have learned with all the C and Pascal-like languages. Empty your mind. This is the hardest step. Then, take a good introduction to programming that uses Lisp. Don't try to correlate what you see with anything that you know beforehand (when you catch yourself doing that, repeat step 1). I liked Structure and Interpretation of Computer Programs (uses Scheme), Practical Common Lisp, Paradigms of Artificial Intelligence Programming, Casting Spels in Lisp, among others. Be sure to write out the examples. Also try the exercises, but limit yourself to the constructs you have learned in that book. If you find yourself trying to find, for example, some function to set a variable or some statement that resembles a |
|||
|
|
|
|
To truly grok lisp, you need to write it. Learn to love On the code is data and data is code thing, I wouldn't worry about it at this point. You'll understand it eventually, and its not critical to learning lisp. |
||||
|
|
|
This worked for me:
|
|||
|
|
|
|
About the whole "code is data" thing: Isn't that due to the "von Neumann architecture"? If code and data were located in physically separate memory locations, the bits in the data memory could not be executed whereas the bits in the program memory could not be interpreted as anything but instructions to the CPU. Do I understand this correctly? |
||||||||
|
|
|
I would highly recommend Structure and Interpretation of Computer Programs, which actually uses scheme, but that is a dialect of lisp. It will help you "get" lisp by having you do many different exercises and goes on to show some of the ways that lisp is so usefull. |
|||
|
|
|
|
By watching legendary Structure and Interpretation of Computer Programs? |
|||
|
|
|
|
The way you "get" any language is by trying to write some code in it. About the "data is code" thing, in most languages there is a clear separation between the code that gets executed, and the data that is processed. For example, the following simple C-like function:
the actual control flow is determined once, statically, while writing the code. The function All that can be manipulated is the initial value of Lisp does not have this distinction. The program code is data that can be manipulated too. Your code can, at runtime, take the function |
||||||||
|
|
|
One of the reasons that some university computer science programs use Lisp for their intro courses is that it's generally true that a novice can learn functional, procedural, or object-oriented programming more or less equally well. However, it's much harder for someone who already thinks in procedural statements to begin thinking like a functional programmer than to do the inverse. When I tried to pick up Lisp, I did it "with a C accent." You may notice that I'm not answering your question, which is true. I merely wanted to let you know that it's awfully hard to get your mind thinking in a functional style, and it'll be an exciting practice that will make you a stronger programmer in the long run. Kampai! P.S. Also, you'll finally understand that "my other car is a cdr" bumper sticker. |
|||
|
|
|
|
I'd suggest that is a horrible introduction to the language. There are better places to start and better people/articles/books than the one you cited. Are you a programmer? What language(s)? To help you with your question more background might be helpful. |
|||
|
|
|
|
it's important to see that data is code AND code is data. This feeds the eval/apply loop. Recursion is also fun.
|
|||
|
|
|
|
The way I think about it is that the best part of "code is data" is the face that function are, well, functionally no different than another variable. The fact that you can write code that writes code is one of the single most powerful (and often overlooked) features of Lisp. Functions can accept other functions as parameters, and even return functions as a result. This lets one code at a much higher level of abstraction than, say, Java. It makes many tasks elegant and concise, and therefore, makes the code easier to modify, maintain, and read, or at least in theory. I would say that the only way to truly "get" Lisp is to spend a lot of time with it -- once you get the hang of it, you'll wish you had some of the features of Lisp in your other programming languages. |
||||
|
|
|
Data is code is an interesting paradigm that supports treating a data structure as a command. Treating data in this way allows you to process and manipulate the structure in various ways - e.g. traversal - by evaluating it. Moreover, the 'data is code' paradigm obviates the need in many cases to develop custom parsers for data structures; the language parser itself can be used to parse the structures. |
|||
|
|
|
|
I think you have to have more empathy for compiler writers to understand how fundamental the code is data thing is. I'll admit, I've never taken a compilers course, but converting any sufficiently high-level language into machine code is a hard problem, and LISP, in many ways, resembles an intermediate step in this process. In the same way that C is "close to the metal", LISP is close to the compiler. |
|||
|
|

