From 28c5b8da50ab624f8c9ddf6599724a0fd1f3e243 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Tue, 12 Dec 2023 16:00:34 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- flow/examples/README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 %}