Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (defun make-select-form (str name values)
  2. (cl-who:with-html-output (str nil :indent t)
  3. (:select :name name
  4. (dolist (value values)
  5. (cl-who:htm
  6. (:option :name value (cl-who:str value)))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement