lib/backports/1.9.1/string/chr.rb



unless String.method_defined? :chr
  class String
    def chr
      chars.first || ""
    end
  end
end