[plt-scheme] reloading languages
How can I reload a language without restarting DrScheme? I'm trying to
debug a compiler and not having to restart DrScheme every time I change
something would make it much easier.
-----------------------------------
Daniel Silva
dsilva at ccs.neu.edu
> -----Original Message-----
> From: plt-scheme-admin at qua.cs.brown.edu [mailto:plt-scheme-
> admin at qua.cs.brown.edu] On Behalf Of Jens Axel Søgaard
> Sent: Wednesday, November 06, 2002 9:50 AM
> To: Daniel CAUNE; plt-scheme at qua.cs.brown.edu
> Subject: Re: [plt-scheme] Newbie Schemer question
>
> For list-related administrative tasks:
> http://list.cs.brown.edu/mailman/listinfo/plt-scheme
>
> Daniel CAUNE wrote:
>
> >I would like to execute a function that has one of its variable
defined
> >outside this function, in an upper context. Suppose that I define a
> simple
> >function such as:
> >
> >(define (f n)
> > (+ *p* n))
> >
> >I would like to write something like that (the following syntax is
> >incorrect):
> >
> >((let ((*p* 1))
> > (lambda ()
> > (f 2)))
> >
> >How should I formulate this in Scheme?
> >
> >
> >
>
> Do you know
>
> set!
>
> ?
>
> The only reason I'm asking this question, is that you wrote newbie in
> the subject line.
>
> --
> Jens Axel Søgaard