# (loop for i to 10 collect i) gave "unbound variable loop"
turns out you can load cm's loop.scm into Grace and it will work.
(load "/Lisp/cm/src/loop.scm")
(loop for i to 10 collect i)
=> (0 1 2 3 4 5 6 7 8 9)
there will be a compiled version in Grace in the next release.
