Navigation menu

Engine:CCMD run: Difference between revisions

Jump to navigation Jump to search
2,264 bytes added ,  16 October 2023
 
(28 intermediate revisions by the same user not shown)
Line 150: Line 150:
'bob' is 'fred james'
'bob' is 'fred james'
</kua>
</kua>
:3. back tick - any text within a set of back ticks will be a single parameter, and the ticks will be stripped.
<kua>
> set bob `fred james`
> bob
'bob' is 'fred james'
</kua>
==== Special delimiters ====
:1. Back ticks surrounding text passed directly to a context will be stripped. Normally all text is passed verbatim, including quotes. Back ticks effectively treat the rest of the statement as a block for a multi-line statement. Quotes are not removed normally as they may be important to the context's command processing. Back ticks are special in that they will be removed from the start and end of the script statement. Without this special behavior, there would be no way to run a multi-line command block for an associated context, without switching to it first.
<kua>
> lua `print "bob"`
bob
> lua `
  print "bob"
  print "bob"
`
bob
bob
> lua '
  print "bob"
  print "bob"
'
Error in : [string "'print "bob"'"]:1: unexpected symbol near ''print "bob"'' (3)
</kua>
== More examples ==
Direct context with out back ticks:
<kua>
> lua print "bob"
bob
> lua 'print "bob"'
Error in : [string "'print "bob"'"]:1: unexpected symbol near ''print "bob"'' (3)
> lua run 'print "bob"'
bob
</kua>
: When addressing the context directly, all of the 'other text' that is not the command simply gets passed to the context. At the top, print "bob" gets run in 'lua' context. The second fails as 'print "bob"' is not valid for the context or Lua. The third runs usingthe run command as a normal parameter to 'run'. While it will run multiline Lua scripts, text still won't be running as a set of context commands.
<kua>
> lua `
  print "bob"
  print "bob"
`
bob
bob
</kua>
: Here effectively as a block inside 'lua'
<kua>
> context lua
> print "bob"
bob
> print "bob"
bob
> context global
</kua>
: And same thing but switching and executing and switching back.
<kua>
> notthere `
  print(1+2)
  print(1+2)
`
Unknown: notthere
</kua>
: The context did not exist and didn't run the block. In this case, guards against running commands in wrong context, if the context didn't exist at that time.
<kua>
> context notthere
> print(1+2)
Unknown: print(1+2)
> print(1+2)
Unknown: print(1+2)
> context global
</kua>
: This time commands are run in the unintended context.


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