adding test files for tracing the module scoping bug

This commit is contained in:
Danny Yoo 2012-02-26 19:03:26 -05:00
parent b0af169275
commit fe10bcb18c
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,10 @@
#lang planet dyoo/whalesong
(require (for-syntax racket/base))
(provide x x++ x=0)
(define x 0)
(define (set-x v)
(set! x v))
(define-syntax (x++ stx)
#'(set-x (add1 x)))
(define-syntax (x=0 stx)
#'(set-x 0))

View File

@ -0,0 +1,13 @@
#lang planet dyoo/whalesong
(require "module-scoping-helper.rkt")
x
x++
x++
x
x=0
x++
x
x++
x
x++
x