Skip to content

Instantly share code, notes, and snippets.

@nickik
Created November 1, 2010 17:38
Show Gist options
  • Save nickik/658563 to your computer and use it in GitHub Desktop.
Save nickik/658563 to your computer and use it in GitHub Desktop.
(defn FieldXML [field]
(str "<field>"
(str "<id>" (calc-pos (:x field) (:y field)) "</id>")
(str "<team>" (:color (:token field)) "</team>")
(str "<token>" (:val (:token field)) "</token>")
"</field>"))
(defn BoardXML [board]
(str "<stratego>"
(doall (for [field board]
(FieldXML field)))
"</stratego>"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment