Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 312 Bytes

File metadata and controls

16 lines (15 loc) · 312 Bytes

Sample Flowchart

flowchart TD
    A[Start] --> B{Is it raining?}
    B -->|Yes| C[Take umbrella]
    B -->|No| D[Wear sunglasses]
    C --> E[Go outside]
    D --> E
    E --> F{Hungry?}
    F -->|Yes| G[Get food]
    F -->|No| H[Continue walking]
    G --> I[Eat]
    I --> H
    H --> J[End]
Loading