Hi!
I have an AMD-64 3000 and a x86 Ubuntu 7.04 installed on.
I tried sbcl-linux-x86 1.00, 1.07 and 1.08.
When I run this code in the sbcl i get a something like an
infinite-loop. To second try it works in sbcl, but I can't use it with
emacs.
Setf and the other side-effect functions seems to be buggy if I use
them inside my functions. Also there was a macroexpand error. (it
worked if I inserted the macroxpand-1 result into the code).
So how can I get work this? Am I need to install a 64 bit ubuntu or
there is something other way?
Thx - a newbie
(defstruct node
root
child
value)
(defun node-add-children (r c)
(push c (node-child r))
(setf (node-root c) r))
(defparameter p1 (make-node :value 1))
(defparameter p2 (make-node :value 2))
(node-add-children p1 p2)
|