PDA

View Full Version : Lisp printing



Mr.Macdonald
December 24th, 2008, 08:42 PM
I need to print data in a neat format like C's printf using common lisp

Ruhe
December 24th, 2008, 09:09 PM
Checkout this doc reference:
http://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node200.html

This must help you

Cracauer
December 25th, 2008, 03:22 AM
(format ...)

http://www.gigamonkeys.com/book/a-few-format-recipes.html

nvteighen
December 25th, 2008, 03:40 PM
Common Lisp has a very similar printf()-like procedure called (format). Scheme has copied it, but with less features.