Talk:Lisp (programming language): Difference between revisions

Content deleted Content added
CYD (talk | contribs)
nope
More musing over cond
Line 110:
 
This is because, since <code>cond</code> is defined as a normal Lisp function, the Lisp interpreter attempts to evaluate <code>(misc-variable-name 1)</code>. This is a no-op, because <code>misc-variable-name</code> is not the name of a function. That's why cond is called a "special form" - its syntax is handled specially by the interpreter. -- [[User:CYD|CYD]]
 
:It works just fine if "true" and "false" have the definitions I gave. -- [[User:P3d0|P3d0]] 11:20, 25 Aug 2003 (UTC)