Advertisement
Guest User

Untitled

a guest
May 28th, 2014
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defmacro &html [guts]
  2.   (clojure.string/join ["<html>" guts "</html>"]))
  3. (defmacro &body [guts]
  4.   (clojure.string/join ["<body>" guts "</body>"]))
  5.  
  6.  
  7. (&html
  8.  (&body))
  9. ;;outputs "<html>(&body)</html>"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement