Guest User

Untitled

a guest
May 27th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. (define-easy-handler (test-page :uri "/") (entered-text)
  2. (setf (content-type*) "text/html")
  3. (html-string
  4. (:html
  5. (:head
  6. (:title "Hello world!"))
  7. (:body
  8. (:h1 "Foo Bar")
  9. (:p "Text you entered:" (:br)
  10. (str entered-text) (:br)
  11. "Test link:" (:br)
  12. (str thefacepalm-link))))))
Add Comment
Please, Sign In to add comment