Graph
Line 3: | Line 3: | ||
<graphviz> | <graphviz> | ||
digraph G { | digraph G { | ||
- | size =" | + | size ="20,20"; |
- | + | "Executive Board" [shape=box]; /* this is a comment */ | |
- | + | "Executive Board" -> parse [weight=8]; | |
parse -> execute; | parse -> execute; | ||
- | + | "Executive Board" -> init [style=dotted]; | |
- | + | "Executive Board" -> cleanup; | |
execute -> { make_string; printf} | execute -> { make_string; printf} | ||
init -> make_string; | init -> make_string; | ||
edge [color=red]; // so is this | edge [color=red]; // so is this | ||
- | + | "Executive Board" -> printf [style=bold,label="100 times"]; | |
make_string [label="make a\nstring"]; | make_string [label="make a\nstring"]; | ||
node [shape=box,style=filled,color=".7 .3 1.0"]; | node [shape=box,style=filled,color=".7 .3 1.0"]; |
Revision as of 16:36, 12 March 2009
Graphviz Tests