Skip to content

Instantly share code, notes, and snippets.

@mistercam
Created April 29, 2012 14:38
Show Gist options
  • Save mistercam/2550861 to your computer and use it in GitHub Desktop.
Save mistercam/2550861 to your computer and use it in GitHub Desktop.
A function that returns the opposing piece of the specified piece
(defn opposite-piece [piece]
"Returns the opposing-piece of the specified piece"
(if (= :w piece) :b :w ))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment