Marco Morazan wrote on 03/02/2016 01:12 PM:
How do we write a blank to a text file without the parallel bars appearing?

So, (write '| | outfile) produces | | in the file. I want to eliminate the 
vertical bars.

That quote and vertical bars are creating an unusual symbol. Do you instead want to write a string or character?

(write-string " " outfile)
(display " " outfile)
(write-char #\space outfile)
(display #\space outfile)

Neil V.

--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to