Engine:CCMD run: Difference between revisions

257 bytes added ,  15 October 2023
Line 82: Line 82:
=== Parameters: ===
=== Parameters: ===
'Statements' intrinsically contain only a 'command' and the optional 'other text'. A command can treat the 'other text' as a whole string, or as divided into multiple parameters.
'Statements' intrinsically contain only a 'command' and the optional 'other text'. A command can treat the 'other text' as a whole string, or as divided into multiple parameters.
Examples:
<kua>
> echo bob fred
bob fred
</kua>
: 'echo' takes the whole 'other text' as the value to print.
<kua>
> set bob fred james
> bob
'bob' is 'fred'
</kua>
: 'set' takes only the first two separated by space for the 'name' and 'value' parameters.


== Notes ==
== Notes ==
*
*