Skip to content

Instantly share code, notes, and snippets.

@danking
Last active August 29, 2015 13:56
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 danking/8816677 to your computer and use it in GitHub Desktop.
Save danking/8816677 to your computer and use it in GitHub Desktop.
(define-syntax (val stx)
(syntax-case stx ()
[(_ id v)
#`(define-syntax id
(make-set!-transformer
(lambda (stx)
(syntax-case stx (set!)
[(set! id new-v) #'(error 'id "~a is not mutable" (symbol->string 'id))]
[id (identifier? #'id) #'v]))))]))
(val bar (lambda (x) x))
(bar 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment