tfm-report/img/cfgsimple.dot
2019-10-18 08:54:33 +00:00

6 lines
175 B
Text

digraph g {
Start [shape=box];
End [shape=box];
f [label=<x_in = a<br/>y_in = b<br/>f (a, b)<br/>b = x_out>]
Start -> "a = 10" -> "b = 20" -> f -> "print(a)" -> End;
}