Hi Bradley,

On Tue 12 Apr 2011 17:44, "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 instead of ~s.

    scheme@(guile-user)> (format #t "~a\n" "foo")
    foo
    $1 = #t
    scheme@(guile-user)> (format #t "~s\n" "foo")
    "foo"
    $2 = #t

See "Formatted Output" in the manual for all the gory details.

Have fun with Guile,

Andy
-- 
http://wingolog.org/

Reply via email to