From: David Bakhash
Subject: need help w/ `loop'
Date: 
Message-ID: <cxjoguptpvu.fsf@engc.bu.edu>
This baffles me:

(loop for i from 0 to 3
  with result = 0
   do
    (incf result i)
   return result)

==> 0

Why?  doesn't the stuff that occurs in the body of the `loop' make a
difference?  What am I missing?

dave