Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def echo(blah)
- return blah
- end
- def shout(blah)
- return echo(blah).upcase
- end
- def repeat(blah, *num)
- if num > 0
- return (blah + " ") * num
- else
- return (blah * 2)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement