Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 551 Bytes

README.md

File metadata and controls

38 lines (30 loc) · 551 Bytes

This is the readme file that contains all I need to know about running the software.

Left to right flow

flowchart LR

A[Initial State] --> B[Container]
A --> C[Begin]
B --> D[Setups]
C --> E[libraries]
E --> D
D --> F[Syntax]
E --> G[Execution]
G --> F
Loading

Top down flow

    graph TD
        A[Start] --> B[Process 1]
        B --> C[Decision]
        C -->|Yes| D[Process 2]
        C -->|No| E[End]
        D --> F[Process 3]
        F --> G[End]
Loading

Top Down flow

graph TD

    A-->B

    B-->C

    C-->D
Loading