I'm working through Peter Seibel's Practical Common Lisp book using NewLisp as my environment (at least at work where I'm stuck with windows). Anyway, early on he provides an example to print the proverbial Hello World (from his book):
Code: Select all
> (format t "hello, world")
hello, world
nil
I quickly figured out that NewLisp wants a format string in place of the "t", so I tried:
Code: Select all
> (format "%s" "hello, world")
"hello, world"
>
This is great, but the point of the excercise was to get rid of the quotes in the output stream.
Any hints on how to do this in NewLisp? I couldn't find a thread on quotes in the forum and the NewLisp manual section on Format doesn't discuss the topic.
And, is there a FAQ that illustrates the differences between NewLisp and Common Lisp?
P. Todd