Sha256: 7a9b3df1139301405fba27b72555ff1e4e3aaee1359d6e788b33d8197c189b66
Contents?: true
Size: 270 Bytes
Versions: 10
Compression:
Stored size: 270 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 => "hello.png" )
Version data entries
10 entries across 10 versions & 1 rubygems