pytutorial/flow/examples/README.md
David Rotermund bd29bc7422
Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-12 16:10:07 +01:00

41 lines
643 B
Markdown

# Flowchart examples
{:.no_toc}
<nav markdown="1" class="toc-class">
* TOC
{:toc}
</nav>
## The goal
Looking into some flow chart examples.
Questions to [David Rotermund](mailto:davrot@uni-bremen.de)
## Most simple program
This program does nothing.
{% raw %}
<pre class="mermaid">
flowchart TD
start([Start])-->stop([Stop])
</pre>
{% endraw %}
## Most a+b=c program
{% raw %}
<pre class="mermaid">
flowchart TD
start([Start]) --> inita{{"a ← 1"}} --> initb{{"b ← 1"}} --> add("c ← a+b") --> printc[/"print c"/] -->stop([Stop])
</pre>
{% endraw %}
In Python:
```python
a=1
b=1
c=a+b
print(c)
```