Skip to content

Instantly share code, notes, and snippets.

@KirinDave
Created September 12, 2010 18:56
Show Gist options
  • Select an option

  • Save KirinDave/576326 to your computer and use it in GitHub Desktop.

Select an option

Save KirinDave/576326 to your computer and use it in GitHub Desktop.
(define-syntax rotate
(syntax-rules ()
[(rotate a) (void)]
[(rotate a b c ...) (begin
(swap a b)
(rotate b c ...))]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment