Created
July 27, 2010 08:05
-
-
Save glejeune/491924 to your computer and use it in GitHub Desktop.
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
IoGraphViz | |
gv := IoGraphViz clone with("G") | |
hello := gv addNode("hello", nil) | |
world := gv addNode("world", nil) | |
gv addEdge(hello, world) | |
options := Map clone do( | |
atPut("output", "png") | |
atPut("file", "sample1.png") | |
) | |
gv output(options) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment