Simple Flowchart Example by Claude 3.5 Sonnet

Prompt

Create a sample flowchart

Play Here

graph TD A[Start] --> B{Is it raining?} B -->|Yes| C[Take an umbrella] B -->|No| D[Enjoy the weather] C --> E[Go outside] D --> E E --> F[End]

Mermaid File

Claude 3.5 Sonnet uses Mermaid to create diagrams
graph TD
    A[Start] --> B{Is it raining?}
    B -->|Yes| C[Take an umbrella]
    B -->|No| D[Enjoy the weather]
    C --> E[Go outside]
    D --> E
    E --> F[End]

Leave a Reply