Skip to content

Instantly share code, notes, and snippets.

@BitPuffin
Created February 3, 2016 16:41
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 BitPuffin/cecc38b6d7d081eed7c6 to your computer and use it in GitHub Desktop.
Save BitPuffin/cecc38b6d7d081eed7c6 to your computer and use it in GitHub Desktop.
> (define x 0)
> (define (foo x)
> (set! x 2))
> (foo x)
> x
0
> (define-syntax-rule (bar x)
(set! x 2))
> (bar x)
> x
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment