Is 12 mins your record for fixing a bug and committing it? :-)


On Feb 18, 2009, at 5:18 PM, Matthew Flatt wrote:

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
_________________________________________________
  For list-related administrative tasks:
  http://list.cs.brown.edu/mailman/listinfo/plt-dev

_________________________________________________
 For list-related administrative tasks:
 http://list.cs.brown.edu/mailman/listinfo/plt-dev

Reply via email to