Advertisement
Guest User

Untitled

a guest
May 7th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (defmacro with-osm (stream &body body)
  2. `(progn
  3. (format ,stream "~a~%~a~%"
  4. "<?xml version='1.0' encoding='UTF-8'?>"
  5. "<osm version=\"0.6\" generator=\"osmium/1.5.1\">")
  6. ,@body
  7. (format ,stream "~&</osm>~%")))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement