Subject: printing lists From: Erik Naggum <erik@naggum.no> Date: 1996/08/24 Newsgroups: comp.lang.lisp Message-ID: <3049869637359318@arcana.naggum.no> another question about near-trivial Common Lisp requirements. ANSI X3.226 section 22.1.3.5 Printing Lists and Conses clearly states how a list should be printed. however, is there room for printed forms that exploit the readtable? e.g., '(quote foo) => 'foo, '(function foo) => #'foo, '`(foo ,bar) => `(foo ,bar). if so, how would it be requested? #\Erik