Advertisement
da4

burrrrrito.rb

da4
Dec 9th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.37 KB | None | 0 0
  1. #!/usr/bin/env ruby
  2. #
  3. # burrrrrito v0.01 - Concise version thanks to a kind
  4. # redditor (ageddyn) - based on dicks.rb
  5. #
  6.  
  7. # if you wish to make a dong from scratch
  8. BU,RRRRRR,ITO = "bu","rr","ito++"
  9.  
  10. # you must first create the universe
  11. def burrito (n)
  12.   n.times do
  13.     puts "#{BU}#{RRRRRR * (rand(10)+1)}#{ITO}"
  14.   end
  15. end
  16.  
  17. burrito(ARGV.empty? ? 5 : ARGV.pop.to_i)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement