Lesson 6: Ruby is Dynamic 

class String

  def shout
    return self + '!'
  end

end

x = 'Hello'

puts x.shout    # outputs: Hello!