Advertisement
Guest User

Untitled

a guest
Nov 20th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. def echo(blah)
  2. return blah
  3. end
  4.  
  5. def shout(blah)
  6. return echo(blah).upcase
  7. end
  8.  
  9. def repeat(blah, *num)
  10. if num > 0
  11. return (blah + " ") * num
  12. else
  13. return (blah * 2)
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement