Engine:CCMD run: Difference between revisions

Line 70: Line 70:
::<kua>command 'other' "text"</kua>
::<kua>command 'other' "text"</kua>
:8. If quoted text is found, any semi-colons, line-ends, or comment starts will be ignored, until next matching quote character.
:8. If quoted text is found, any semi-colons, line-ends, or comment starts will be ignored, until next matching quote character.
<kua>command 'other;
:<kua>command 'other;' "//text"</kua>
' "//text"</kua>
<kua>command 'other
:: In this case 'command other\n statement' will be treated as one statement, and the statement does not end after the 'other;'.
' "text"</kua>
:: In this case will be treated as one statement, where the statement does not end after the 'other' and the newline is included in the parameter, like 'other\n'.
:9. No other checking or processing is done on any 'other text' after the command name, and any actual meaning is context-dependent and determined when the actual statement is run.
:9. No other checking or processing is done on any 'other text' after the command name, and any actual meaning is context-dependent and determined when the actual statement is run.
::<kua>command other text</kua>
::<kua>command other text</kua>