Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 200 Bytes

File metadata and controls

10 lines (9 loc) · 200 Bytes
flowchart TD;

A[Process] --> B{Condition?};
B -- Yes --> C[Another Process];
B -- No --> D[Exit Process];
C ----> E{Another Condition?};
E -- Yes --> F[Etc...];
E -- No --> G[Etc...];
Loading