# File lib/facets/more/lisp.rb, line 65
    def DottedPair.[](*array)
      if array.empty?
        nil
      else
        DottedPair.new(array.shift, DottedPair[*array])
      end
    end