Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.50 KB | None | 0 0
  1. def spongebob
  2.   sponge = %w(Spange Speng Sporg Splorg Spang Spernd Splort
  3.     Spunk Scram Spange Speeng Splen Speng Spinge Spong).choice
  4.    
  5.   bob = %w(bob bob bob bab bab bab beb blat berp bharb blar
  6.     blorg).choice
  7.  
  8.   sponge + bob
  9. end
  10.  
  11. def squarepants
  12.   square = %w(Squar Skur Sven Squat Spleen Snare Sklabh Squere
  13.     Dildo).choice
  14.  
  15.   pants = %w(pents ponce porks peeps pops pans pints
  16.     ponts).choice
  17.  
  18.   square + pants
  19. end
  20.  
  21. 10.times { puts "#{spongebob} #{squarepants}" }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement