Graphviz sample
From 3DN
| This site is part of the 3DN Network. Every content on the 3DN Network is subject to the [3DN Terms of Service]. Other sites in the 3DN Network include: 3DN Politics 3DN Technology 3DN Voetbal 3DN Politicap and Dutchie |
<widget type="graphviz" style="dot">
digraph G {
size = "4,4";
main[shape = box];
main -> parse[weigh=8];
parse -> execute;
main -> init[style=dotted];
main -> cleanup;
execute -> {make_string; printf}
init -> make_string;
edge[color = green];
main -> printf[style = bold, label = "100 times"];
make_string [label = "make a\nstring"];
node[shape=box, style=filled, color=".7 .31 .0"];
execute -> compare;
}
</widget>