Skip to content

Instantly share code, notes, and snippets.

@hannestyden
Created February 4, 2014 18:48
Show Gist options
  • Save hannestyden/8809804 to your computer and use it in GitHub Desktop.
Save hannestyden/8809804 to your computer and use it in GitHub Desktop.
def scream(s)
s.upcase
end
s = scream(<<-TEXT.gsub('z', 's')).gsub('EE', 'I')
Theez eez a lot of text.
Not really, but eet could be.
TEXT
s # => "THIS IS A LOT OF TEXT.\n\nNOT REALLY, BUT IT COULD BE.\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment