Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
8b10e88ac5
commit
f2f743aaeb
1 changed files with 46 additions and 0 deletions
|
@ -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 %}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue