Update README.md

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

View file

@ -28,7 +28,14 @@ This program does nothing.
{% raw %}
<pre class="mermaid">
flowchart TD
start([Start]) --> inita{{"a ← 1"}} -->stop([Stop])
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)
```