Skip to content

Instantly share code, notes, and snippets.

@soegaard
Last active December 19, 2015 02:08
Show Gist options
  • Save soegaard/5880470 to your computer and use it in GitHub Desktop.
Save soegaard/5880470 to your computer and use it in GitHub Desktop.
#lang racket
(module+ constants (provide c) (define c 42))
(require (submod "." constants)) ; incorrect!
c
(set! c (+ c 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment