Created
December 23, 2015 03:46
-
-
Save domgetter/8fd3f67808d88dec4861 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class String | |
def **(n) | |
case n | |
when 2 | |
([self]*self.length).join("\n") | |
end | |
end | |
end | |
puts "hello"**2 | |
# hello | |
# hello | |
# hello | |
# hello | |
# hello | |
#=>nil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment