Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

20 Syntax Complete Workflow

syntax-primitives

This workflow models one workflow using most available language features.

Full FlowZap Code

laneA { # Lane A
  n1: circle label:"Start 20 Syntax Complete"
  n4: rectangle label:"20 Syntax Complete step 4"
  n7: circle label:"End 20 Syntax Complete"
  n1.handle(bottom) -> laneB.n2.handle(top)
  n4.handle(bottom) -> laneB.n5.handle(top)
}

laneB { # Lane B
  n2: rectangle label:"20 Syntax Complete step 2"
  n5: rectangle label:"20 Syntax Complete step 5"
  n2.handle(bottom) -> laneC.n3.handle(top)
  n5.handle(bottom) -> laneC.n6.handle(top)
}

laneC { # Lane C
  n3: rectangle label:"20 Syntax Complete step 3"
  n6: rectangle label:"20 Syntax Complete step 6"
  n3.handle(right) -> laneA.n4.handle(left)
  n6.handle(right) -> laneA.n7.handle(left)
}

Related templates