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:29:06 +01:00 committed by GitHub
parent 88614efc3a
commit cd2466bc24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,7 @@ print(c)
{% raw %} {% raw %}
<pre class="mermaid"> <pre class="mermaid">
flowchart TD flowchart TD
start([Start]) --> inita{{"counter ← 0"}} --> inita{{"counter_max ← 100"}} --> Condition{"counter < counter_max"} start([Start]) --> initcounter{{"counter ← 0"}} --> initcountermax{{"counter_max ← 100"}} --> Condition{"counter < counter_max"}
Condition -- Yes --> printcounter[/"print counter"/] --> Action["counter ← counter + 1"] Condition -- Yes --> printcounter[/"print counter"/] --> Action["counter ← counter + 1"]
Action --> Condition Action --> Condition
Condition -- No --> End(End) Condition -- No --> End(End)