# File lib/facets/more/lisp.rb, line 185
  def append(l, m)
    if null?(l)
      if null?(m)
        nil
      else
        cons(car(m), append(l, cdr(m)))
      end
    else
      cons(car(l), append(cdr(l), m))
    end
  end