Dumb Question. How to print Speech marks?
BlitzMax Forums/BlitzMax Beginners Area/Dumb Question. How to print Speech marks?| 
 | ||
| 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 :) | 
| 
 | ||
| Graphics 640,480 While Not KeyHit(key_escape) Cls DrawText "~qHello~q",10,10 Flip Wend There you go :) | 
| 
 | ||
| thanks very much Jazzie, i knew there had to be a way :) | 
| 
 | ||
| alternatively: print "This is a "+chr$(34)+"test"+chr$(34) |