Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. (defn add
  2. "Summing two integers known at runtime"
  3. [a b]
  4. (+ a b))
  5.  
  6. (defmacro add-m
  7. "Summing two integers known at compile time"
  8. [a b]
  9. (+ a b))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement