[plt-scheme] Re: Casting SPELs in Lisp^H^H^H^H Scheme

From: Eli Barzilay (eli at barzilay.org)
Date: Thu Feb 18 17:17:11 EST 2010

On Feb 18, jacmoe wrote:
> That was the issue. Thanks a lot! :)
> So, the code becomes:
> (define *chain-welded* #f)
> [...]

BTW, another option is to use

  (define *chain-welded* #f) (set! *chain-welded* #f)

The fact that it is `set!' in the module will keep it that way.  (At
the mzscheme level there is a parameter that can turn this off, and I
thought that drscheme had an option to do that.)

In any case, that also wouldn't be a problem if you add code to the
definitions window.

-- 
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:
                    http://barzilay.org/                   Maze is Life!


Posted on the users mailing list.