RosettaCodeData/Task/Runtime-evaluation/EchoLisp/runtime-evaluation.l

7 lines
121 B
Common Lisp

(eval (list * 6 7))
42
(eval '(* 6 7)) ;; quoted argument
42
(eval (read-from-string "(* 6 7)"))
42