diff --git a/flow/examples/README.md b/flow/examples/README.md index 236d0e1..ec38614 100644 --- a/flow/examples/README.md +++ b/flow/examples/README.md @@ -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 %}
flowchart TD - id1([Start])-->id2([Stop]) + start([Start])-->stop([Stop]){% endraw %} +## Most a+b=c program + +{% raw %} +
+ flowchart TD + start([Start]) --> inita{{$a <- 1$}} -->stop([Stop]) ++{% endraw %}