Last active
July 17, 2016 12:58
-
-
Save arronmabrey/c93b8b48db3c9bff69e41f80298eb68d to your computer and use it in GitHub Desktop.
graphviz hello world
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 { | |
hello [color=red] | |
world [shape=box color=green] | |
hello -> gist1 | |
a [color=purple] | |
b [shape=box color=pink] | |
c [color=blue] | |
a -> b -> c -> a | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment