On Fri, Dec 10, 2010 at 6:41 PM, Alessio Stalla alessiostalla@gmail.com wrote:
If I do
echo '(prog (format nil "version=~a" (lisp-implementation-version)) (quit))' | ./abcl
only the prompt is printed, not the result.
That's because (format nil ...) prints to a string, not to *standard-output*. You want (format t ...) instead.
oops, never mind -- I was testing the wrong thing. What I needed is working now. Thanks to both of you.
-- Gaby