[plt-scheme] print-graph

From: Eli Barzilay (eli at barzilay.org)
Date: Sun Sep 17 01:06:49 EDT 2006

On Sep 16, Chongkai Zhu wrote:
> [...]
> Is this a bug?

In MzScheme I get:

  > (print-graph #f)
  > '#(#1=(cons 1 2) 1 #1#)
  #3((cons 1 2) 1 (cons 1 2))
  > '(#0=(list 1 2) #0#)
  ((list 1 2) (list 1 2))
  > (print-graph #t)
  > '#(#1=(cons 1 2) 1 #1#)
  #3(#0=(cons 1 2) 1 #0#)
  > '(#0=(list 1 2) #0#)
  (#0=(list 1 2) #0#)

But it looks like DrScheme ignores the setting.

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


Posted on the users mailing list.