Isn't there a bug that lets you do it without using chr$(34)?
I don't recommend using it though... once the bug is fixed you get to redo all your code.
print ""Hello""
suspend for key
Here's a function to check each character in a text string.
Hope this helps.
PrintT(0,0,"Grog says |Life is glorious!|")
suspend for key
end
` Print Text PrintT(x location, y location, String of Text)
` Any |'s are changed to "'s
function PrintT(x,y,Text$)
for t=1 to len(Text$)
t$=mid$(Text$,t)
if t$="|" then t$=chr$(34)
text x,y,t$:inc x,text width(t$)
next t
endfunction