# Sadie commented that it was annoying that syntax highliting stops when you are
# editing.  I wonder if this happens with Python, as well as in Jython.

i=0
while i<10:
   print 'current value of i is ', i
   i=i+1
