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:00:34 +01:00 committed by GitHub
parent 7ee8fcf7f4
commit 28c5b8da50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,15 +12,23 @@ Looking into some flow chart examples.
Questions to [David Rotermund](mailto:davrot@uni-bremen.de)
## Most simple programm
## Most simple program
This program does nothing.
{% raw %}
<pre class="mermaid">
flowchart TD
id1([Start])-->id2([Stop])
start([Start])-->stop([Stop])
</pre>
{% endraw %}
## Most a+b=c program
{% raw %}
<pre class="mermaid">
flowchart TD
start([Start]) --> inita{{$a <- 1$}} -->stop([Stop])
</pre>
{% endraw %}