Can format procedure output unquoted strings?

2011-04-12 Thread Whitlock, Bradley D
I am trying to get the format procedure to behave like the display procedure where it will not surround output to stdout with quotes Is there a trick do accomplish this? Thanks, Brad

Re: Can format procedure output unquoted strings?

2011-04-12 Thread Mark H Weaver
Whitlock, Bradley D bradley.d.whitl...@lmco.com writes: I am trying to get the format procedure to behave like the display procedure where it will not surround output to stdout with quotes Use ~A in the format string, which formats the corresponding argument like `display', whereas ~S formats

Re: Can format procedure output unquoted strings?

2011-04-12 Thread Thien-Thi Nguyen
() Whitlock, Bradley D bradley.d.whitl...@lmco.com () Tue, 12 Apr 2011 11:44:52 -0400 I am trying to get the format procedure to behave like the display procedure where it will not surround output to stdout with quotes Is there a trick do accomplish this? Probably the best trick is to