Keywords
Action keywords
goto
onestep:
goto somestep
say "after the goto" /* will not be executed */
goto someotherstep /* will not be executed */
somestep:
say "hi"
someotherstep: /* will not be executed */
say "hey"say
debug
hold
hold_secure
remember
do
forget
Root-level keywords
const
import
Other keywords
as
if / else if / else
foreach
while
break, continue
Deprecated keywords
match (deprecated)
use..as (deprecated)
Operators
Mathematical Operators
String Concatenation
Last updated
Was this helpful?