Keywords / run / then run
run / then run
A step inside a flow. Structure
Syntax
run "<file.loop>"
then run "<file.loop>"
โฆ with the result of <step>
What it does
A flow step. run "x.loop" runs every definition in that file; then run chains the next and receives the previous step's text summary; with the result of <step> pulls the handoff from a named earlier step instead of the previous one.
Example
flow "release":
run "build.loop"
then run "test.loop"
then run "notes.loop" with the result of buildnamed handoff