5 lines
193 B
Text
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;
|
|
}
|