Guest User

Untitled

a guest
Feb 20th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/usr/bin/ruby
  2.  
  3. require 'rubygems'
  4. require 'gruff'
  5.  
  6. # Simplest graph
  7. g = Gruff::Bar.new
  8.  
  9. g.title = 'A simple bar chart'
  10.  
  11. g.data('Foo', 5)
  12. g.data('Bar', 3)
  13. g.data('Else', 15)
  14.  
  15. g.write
Add Comment
Please, Sign In to add comment