[plt-dev] crash and burn

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Wed Feb 18 17:18:29 EST 2009

Fixed in SVN.

Thanks,
Matthew

At Wed, 18 Feb 2009 17:06:41 -0500, Dave Herman wrote:
> ;; Definitions window:
> 
> (module foo scheme/base
>    (define (even? n)
>      (or (zero? n) (odd? (sub1 n))))
>    (define (odd? n)
>      (and (not (zero? n)) (even? (sub1 n)))))
> 
> ;; Interactions window:
> 
>  > (namespace-undefine-variable! 'even?)
>  > (namespace-variable-value 'even?)
> namespace-variable-value: even? is not defined
>  > (odd? 42)
> 
> **SEGFAULT**
> 
> _________________________________________________
>   For list-related administrative tasks:
>   http://list.cs.brown.edu/mailman/listinfo/plt-dev


Posted on the dev mailing list.