[plt-scheme] mzscheme behaviour differs between debian and gentoo

From: fschwidom at BigBix.localdomain (fschwidom at BigBix.localdomain)
Date: Thu Dec 25 16:40:20 EST 2008

Hi,

the script:

> (define a (list 1 2))
> (define b (list 3 4))
> (append! a b)
(1 2 3 4)
> a
(1 2)
> b
(3 4)

provides not the expected result (here running unter gentoo)

unter debian the output of 

> a

would be

(1 2 3 4)

what could the problem be?

regards.



Posted on the users mailing list.