Evaluation
The following code examples demonstrate how data evaluations can be triggered within the language. See section [TBD] for details.
Control Flow
All control flow is accomplished through synchronous or asynchronous performance of operations, which define their own internal control flow. Refer to the documentation on contexts, buckets, compositions, and operables for details on each type of data being manipulated.
Asynchronous
`Initiate non-behavior operations depending on the context.`
run some context,`Initiate non-behavior operations depending on the bucket.`
run some bucket,`Initiate non-behavior operations matching the operable.`
run <some context, some bucket>,`Initiate non-behavior operations for the undeclared context.`
run !: Context Name [A[1], B[""]];`Initiate non-behavior operations matching the operable.`
run some operable,`Initiate all operations matching the operable for the behaviors
that match the composition.`
run some operable for some composition,`Conditionally initiate operations matching the second operable if there were
no operations that started for the first operable.`
run some operable or another operable,Synchronous
Registration Management
Asynchronous
Synchronous
Last updated