Flowchart (ISO 5807)

The goal

Flowcharts can be used to plan a program. I will try to emulate the norm ISO 5807.

Questions to David Rotermund

Terminal

Beginning of a program or function

    flowchart LR
      id1([Start])
  

Ending of a program or function

    flowchart LR
      id1([Stop])
  

Process

For arithmetic operations and data-manipulations.

    flowchart LR
      id1(Process)
  

Decision

    flowchart LR
      id1{Decision}
  

Input/Output

    flowchart LR
      id1[/Input/]
  

Function

    flowchart LR
      id1[[Function]]
  

Initialization

    flowchart LR
      id1{{Initialization}}
  

File

    flowchart LR
      id1[(File)]
  

The source code is Open Source and can be found on GitHub.