Skip to content

Instantly share code, notes, and snippets.

@ivanelson
Created April 24, 2013 13:02
Show Gist options
  • Save ivanelson/5451963 to your computer and use it in GitHub Desktop.
Save ivanelson/5451963 to your computer and use it in GitHub Desktop.
Gera gráfico tree usando o GraphViz.
digraph zim {
size="300,200";
node [color=lightblue2, style=filled];
"mconta" -> "ghist";
"ghist" -> "iHist";
"ghist" -> "gsencc";
"mconta" -> "iconta";
"iconta" -> "ghist";
"iconta" -> "mconta";
"mconta" -> "gsencc";
}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment