On Sat, 21 Sep 2013 09:48:14 -0400
Matthias Felleisen
wrote:
>
> #lang racket
>
> (require (except-in 2htdp/image image?))
> (require lang/htdp-advanced) ;; <-- this appears to override
>except-in, so stick to this order
> (require 2htdp/universe)
>
Yep, that does it nicely. Thanks a lot
#lang racket
(require (except-in 2htdp/image image?))
(require lang/htdp-advanced) ;; <-- this appears to override except-in, so
stick to this order
(require 2htdp/universe)
On Sep 21, 2013, at 5:50 AM, Manfred Lotz wrote:
> Hi there,
> How could I use template variables (... aso.) when usi
In part I, HtDP introduces the idea of a template (see sections whose title is
Designing Foo). In its most basic form, a template looks like this:
(define (f x) )
To make sure you can evaluate a definitions area that contains such templates,
say
(define (f x)
)
(check-expect (g
3 matches
Mail list logo