Dumb Question. How to print Speech marks?

BlitzMax Forums/BlitzMax Beginners Area/Dumb Question. How to print Speech marks?

Rico(Posted 2012) [#1]
Nice easy one i hope - I want to print Speech marks " " as part of my text string, using the DrawText command. how do i do it?

Thank you :)


JazzieB(Posted 2012) [#2]
Graphics 640,480

While Not KeyHit(key_escape)
	Cls
	DrawText "~qHello~q",10,10
	Flip
Wend

There you go :)


Rico(Posted 2012) [#3]
thanks very much Jazzie, i knew there had to be a way :)


xlsior(Posted 2012) [#4]
alternatively:

print "This is a "+chr$(34)+"test"+chr$(34)