Arc Forumnew | comments | leaders | submitlogin
1 point by absz 5902 days ago | link | parent

I know that mzscheme has a method for printing out circular lists:

  > (define x '(1))
  > (set-cdr! x x)
  > x
  #0=(1 . #0#)
I'm sure there's a good reason that Arc can't just leverage it, but what is said reason?


3 points by pg 5901 days ago | link

Actually it probably just got lost somewhere in converting from nil-terminated lists.

-----