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