Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2023-12-12 15:07:19 +01:00 committed by GitHub
parent 8b10e88ac5
commit f2f743aaeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,60 @@
## Terminal
### Beginning of a program or function
{% raw %}
<pre class="mermaid">
flowchart LR
id1([Start])
</pre>
{% endraw %}
### Ending of a program or function
{% raw %}
<pre class="mermaid">
flowchart LR
id1([Stop])
</pre>
{% endraw %}
## Process
For arithmetic operations and data-manipulations.
{% raw %}
<pre class="mermaid">
flowchart LR
id1(Process)
</pre>
{% endraw %}
## Decision
{% raw %}
<pre class="mermaid">
flowchart LR
id1{Decision}
</pre>
{% endraw %}
## Input/Output
{% raw %}
<pre class="mermaid">
flowchart LR
id1[/Input/]
</pre>
{% endraw %}
## Function
{% raw %}
<pre class="mermaid">
flowchart LR
id1[[Function]]
</pre>
{% endraw %}