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

Flowchart examples

{:.no_toc}

* TOC {:toc}

The goal

Looking into some flow chart examples.

Questions to David Rotermund

Most simple program

This program does nothing.

{% raw %}

    flowchart TD
      start([Start])-->stop([Stop])
  

{% endraw %}

Most a+b=c program

{% raw %}

    flowchart TD
      start([Start]) --> inita{{$a <- 1$}} -->stop([Stop])
  

{% endraw %}