Skip to content

Instantly share code, notes, and snippets.

@mzdravkov
Last active December 24, 2015 02:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mzdravkov/6728540 to your computer and use it in GitHub Desktop.
Save mzdravkov/6728540 to your computer and use it in GitHub Desktop.
(defn move-boxes
([[box & cboxes] pos] (move-boxes box cboxes pos))
([box cboxes pos]
(do some things)
(if (> pos 0)
(move-boxes box cboxes (dec pos))
(move-boxes cboxes (dec pos)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment