# File lib/core/facets/string/uppercase.rb, line 10 def uppercase str = to_s str[0,1].upcase + str[1..-1] end