Hello!
I want to create a flow chart with PlantUML, which looks like this:How can a create such a flow chart, where a path returns to an upper element?
Thanks for your help!
Best regards,J.B.
J.B.
One way is using repeat / while cycle and connectors:
@startuml start :A; repeat if (B) then (yes) :D; :E; else if (C) then (yes) (A) detach end if end if repeat while (condition) (A) stop @enduml
Regards
(--------)