diff --git a/flow/examples/README.md b/flow/examples/README.md index 326de29..f024a18 100644 --- a/flow/examples/README.md +++ b/flow/examples/README.md @@ -28,7 +28,14 @@ This program does nothing. {% raw %}
flowchart TD - start([Start]) --> inita{{"a ← 1"}} -->stop([Stop]) + start([Start]) --> inita{{"a ← 1"}} --> initb{{"b ← 1"}} --> add("c ← a+b") --> printc[/"print c"/] -->stop([Stop]){% endraw %} +In Python: +```python +a=1 +b=1 +c=a+b +print(c) +```