# File lib/kirbybase.rb, line 3846
    def coerce(other)
        return [other, to_i] if other.kind_of? Fixnum
        return [other, to_f] if other.kind_of? Float

        raise "Didn't know how to coerce kb_nil to a #{other.class}"
    end