Hi.
 
This is my code:
 
(defun index ()
  (with-html-output-to-string (*standard-output* nil :prologue t)
    (:html
     (:head)
     (:body
      (:select
       (dolist (var '("citroen" "volvo" "audi"))
         (format nil ("(:option %s" var))))))))
 
I get error:
 Funny car of form: "(:option %s
What's wrong ?
 
Thanks