# File lib/facets/more/lisp.rb, line 332
  def drop(l, n)
    if n > 0 and not null?(l)
        drop(cdr(l), n - 1)
    else
        l
    end
  end