Sha256: 3f2412a25fb7dd92de06762c4ab9d202d1be9e49e7602d085617fa890bec4dac
Contents?: true
Size: 267 Bytes
Versions: 26
Compression:
Stored size: 267 Bytes
Contents
# http://www.graphviz.org/Gallery/directed/hello.html # # digraph G {Hello->World} $:.unshift( "../lib" ); require "graphviz" GraphViz::new( :G, :type => :digraph ) { |g| g.world( :label => "World" ) << g.hello( :label => "Hello" ) }.output( :png => "#{$0}.png" )
Version data entries
26 entries across 26 versions & 2 rubygems