back

by rbanffy·18y ago·view on hn ↗
Or that (this one is in Ruby):

s = 'a'

class String

  def rghize

    return self + 'rgh'

  end
end

puts s.rghize