| I just installed the latest Racket 8.7 and ran the latest official version of arc (http://www.arclanguage.org/arc3.2.tar). While playing with it, I encountered the following bug in scar function: arc> (= x '(1 2 3))
(1 2 3)
arc> x
(1 2 3)
arc> (scar x 'a)
a
arc> x
(344739504129 . 10059776)
In Anarki, this bug seems to be fixed, but I don't want to use anarki because it boots very slowly. Does anyone know how to fix this bug in the official version? |