Making A .bat In A Blitz Program

BlitzPlus Forums/BlitzPlus Programming/Making A .bat In A Blitz Program

Luke111(Posted 2010) [#1]
Hello everyone, i am trying to assemble a special batch from a blitz program, and if you do batch programming, you know you use ""s a lot. Now when i try to make a write line command, and i use ""s in the line to write, blitz goes crazy. Am I missing something here???


CS_TBL(Posted 2010) [#2]
The quotes are already in use by blitz for the string definition.

print chr(34)+"This"+chr(34)+" is a quote!"


Stamm(Posted 2010) [#3]
at Luke:
b+ interpreted what you wrote as
[empty string]s which didnt make any sense to it


Wings(Posted 2011) [#4]
Well herese the answare. i guess u already found out.

a$=a$+chr$(34) ; adds a " to a string.