Skip to content

Instantly share code, notes, and snippets.

@domgetter
Created December 23, 2015 03:46
Show Gist options
  • Save domgetter/8fd3f67808d88dec4861 to your computer and use it in GitHub Desktop.
Save domgetter/8fd3f67808d88dec4861 to your computer and use it in GitHub Desktop.
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