Other Keywords
Miscellaneous keywords with other uses.
There are 5 miscellaneous keywords.
Struct
The struct
keyword is used to create a fixed key <-> value data structure.
This keyword has very strict requirements. It must be immediately followed by a block ({
... }
).
The block may contain only variable assignment statements (in key = value
form).
The result is a property-mapped structure.
A structure has mutable values but an immutable set of properties. Unlike a map it does not allow new properties to be added or removed.
Run
The run keyword is used to run an executable thing, such as a script, a function or an external resource.
An environment can be provided, such as a map, structure, list or object.
The environment forms the initial variables available in the executable being run.
This allows you to pass data arguments to another script or function.
Function
The function keyword is used to create a runnable, re-usable piece of code.
Context variables outside the function are not available inside the function.
This is to prevent accidental pollution (e.g. a function from another script overwriting your variable).
Variables can be explicitly passed using the environment input in the run
statement.
The result of a function is the result value of its final statement.
A function does not need to be a block section.
Syntax
The syntax
keyword defines new syntax that is available in the script following this statement.
The pattern inputs (in %
percents) will accept any statements. The input names will become variables available in the syntax statement.
When the syntax is used, the statement will be invoked with the inputs as variables.
The syntax is available after this line, so it is not available inside itself.
Do
The do
keyword is used to create a local context where an objects properties are available as keywords and variables in the space.
Unlike running something in an object environment, this allows the object's functional properties to be used in situ, without needing to explicitly run
them.
In this way, a do
section can be used to create a kind of local syntax, where an object's functional properties behave as keywords would.
This may be useful for some library objects.
Last updated