01 Basic Lane Workflow
syntax-primitives
This workflow models two connected nodes in a single lane showing basic flow.
syntax-primitives
This workflow models an arrow that loops back across lanes in a circular fashion.
laneA { # Lane A
n1: circle label:"Start 09 Cross Lane Circular"
n2: rectangle label:"09 Cross Lane Circular step 2"
n3: rectangle label:"09 Cross Lane Circular step 3"
n4: rectangle label:"09 Cross Lane Circular step 4"
n5: circle label:"End 09 Cross Lane Circular"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left)
n3.handle(right) -> n4.handle(left)
n4.handle(right) -> n5.handle(left)
}syntax-primitives
This workflow models two connected nodes in a single lane showing basic flow.
syntax-primitives
This workflow models a lane with no nodes to test empty-lane handling.
syntax-primitives
This workflow models nodes with explicit top, bottom, left, and right handle connections.
syntax-primitives
This workflow models a workflow that demonstrates circle, rectangle, diamond, and taskbox shapes.
syntax-primitives
This workflow models connections with descriptive labels between nodes.
syntax-primitives
This workflow models three lanes with cross-lane communication.