Runtime evaluation: Difference between revisions

→‎{{header|Common Lisp}}: er two Common Lisp headers, someone should look at it
(→‎{{header|Common Lisp}}: er two Common Lisp headers, someone should look at it)
Line 151:
There are no standardized debugging facilities specific to the <code>eval</code> operation itself, but code evaluted may be affected by the current [http://www.lispworks.com/documentation/HyperSpec/Body/03_c.htm global declarations], particularly the [http://www.lispworks.com/documentation/HyperSpec/Body/d_optimi.htm <code>optimize</code> declaration]'s <code>debug</code> and <code>safety</code> qualities.
 
=={{header|Common Lisp}}==
The <tt>eval</tt> function evaluates a form at runtime. The form can be Lisp code in a list. Here, I just quote a list. You can use any list operations to make a list.
 
Anonymous user