tfm-report/img/cfgsimple.dot

7 lines
175 B
Text
Raw Normal View History

2019-10-18 10:54:33 +02:00
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;
}