Add a new method by add method to Class
class String def last(n) self[-n, n] end end p "Here's a string.".last(7) # => "string."