Arc Forumnew | comments | leaders | submitlogin
What causes "Warning: Inverting what looks like a function call." ?
2 points by kinnard 346 days ago | discuss
This causes "Warning: Inverting what looks like a function call.:

  ((fn (l) 
    (if
      (is nil l) 0
      (
        (++ 
         ((fn (l) 
            (if
               (is nil l) 0
               ((++ (eternity (cdr l))))))
          (cdr l)))))) 
    '(1 2))