Re: [racket-dev] Is this legal submodule code?

2012-04-19 Thread Danny Yoo
On Thu, Apr 19, 2012 at 2:45 PM, Matthew Flatt wrote: > I've pushed a repair for this bug. Ah, thank you! I will try it out as soon as it hits the 5.3 release branch. _ Racket Developers list: http://lists.racket-lang.org/dev

Re: [racket-dev] Is this legal submodule code?

2012-04-19 Thread Matthew Flatt
I've pushed a repair for this bug. At Wed, 18 Apr 2012 13:02:05 -0400, Danny Yoo wrote: > I'm trying to wrap my head around submodules so I can get it working > with Whalesong, but I'm running into an issue: > > #lang racket > > (define (print-cake n) > #;(show " ~a " n #\.) > #;(show "

Re: [racket-dev] Is this legal submodule code?

2012-04-18 Thread Matthew Flatt
That's a bug. I hope to look into it this afternoon. At Wed, 18 Apr 2012 13:02:05 -0400, Danny Yoo wrote: > I'm trying to wrap my head around submodules so I can get it working > with Whalesong, but I'm running into an issue: > > #lang racket > > (define (print-cake n) > #;(show " ~a " n #

[racket-dev] Is this legal submodule code?

2012-04-18 Thread Danny Yoo
I'm trying to wrap my head around submodules so I can get it working with Whalesong, but I'm running into an issue: #lang racket (define (print-cake n) #;(show " ~a " n #\.) #;(show " .-~a-. " n #\|) #;(show " | ~a | " n #\space) (show "---~a---" n #\-)) (define (show fmt n ch) (pr