diff --git a/flow/overview/README.md b/flow/overview/README.md index ab9b9ce..627273d 100644 --- a/flow/overview/README.md +++ b/flow/overview/README.md @@ -1,14 +1,60 @@ ## Terminal + +### Beginning of a program or function + {% raw %}
flowchart LR id1([Start])+{% endraw %} + +### Ending of a program or function + +{% raw %}
flowchart LR id1([Stop]){% endraw %} +## Process + +For arithmetic operations and data-manipulations. + +{% raw %} +
+ flowchart LR + id1(Process) ++{% endraw %} + +## Decision + +{% raw %} +
+ flowchart LR + id1{Decision} ++{% endraw %} + +## Input/Output + +{% raw %} +
+ flowchart LR + id1[/Input/] ++{% endraw %} + +## Function + +{% raw %} +
+ flowchart LR + id1[[Function]] ++{% endraw %} +