Guest User

Untitled

a guest
Feb 25th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. (defmacro loop-while
  2. [bind condition & body]
  3. `(loop ~bind
  4. (when ~condition
  5. ~@body
  6. (recur ~@(map second (partition 2 bind))))))
Add Comment
Please, Sign In to add comment