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

5 lines
193 B
Text

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;
}