Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ^String and others using #^String
  2.  
  3. (defmacro when
  4. "Evaluates test. If logical true, evaluates body in an implicit do."
  5. {:added "1.0"}
  6. [test & body]
  7. (list 'if test (cons 'do body)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement