Removed /usr/local from CDPATH
[clearscm.git] / test / test.py
1 #!/usr/bin/env python
2 a, b = 0, 1
3
4 while b < 100:
5   print b
6   a, b = b, a+b
7     
8 print "done"
9
10 quit()