Created
April 24, 2013 13:02
-
-
Save ivanelson/5451963 to your computer and use it in GitHub Desktop.
Gera gráfico tree usando o GraphViz.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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