Skip to content

Instantly share code, notes, and snippets.

@soegaard
Created July 1, 2015 17:28
Show Gist options
  • Save soegaard/c24994f656f5cfa840a2 to your computer and use it in GitHub Desktop.
Save soegaard/c24994f656f5cfa840a2 to your computer and use it in GitHub Desktop.
#lang racket
(provide (for-syntax x))
(begin-for-syntax
(define x 1)
(set! x 2))
(define-syntax (foo stx)
(syntax-case stx ()
[(_foo)
(set! x 3)
#'(begin-for-syntax
(set! x 5))]))
(foo)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment