Single or double quote characters are used to define a string value.
"string"
or
'string'
string | literal | A string value. |
Becuase the Henjin processor treats spaces as delimiters between arguments, it is neccesary to surround string values that contain spaces with single or double quote characters. Furtheremore, string values not surrounded by single or double quotes may be misinterpretted as a variable value if a variable by the same name as the string value exists.
An error will occur if the string is surrounded by a single quote character on one end and a double quote character on the other end, or if the single or double quote character only exists at the beginning or end of the string value and not the other end.