tfm-report/img/cfgsimple2.dot

6 lines
193 B
Text
Raw Normal View History

2019-10-18 10:54:33 +02:00
digraph g {
s [shape=box,label=<Start<br/>x = x_in<br/>y = y_in>];
End [shape=box,label=<x_out = x<br/>End>];
s -> "while (x > y)" -> "x = x - 1" -> "while (x > y)" -> "print(x)" -> End;
}