summaryrefslogtreecommitdiff
path: root/impl/systems/generate-long.py
blob: e98b15186ee26e8a1b6d3960ccbd496cea6bde0b (about) (plain)
1
2
3
4
5
6
7
8
9

<<<<<<< HEAD
print 'x0 = 0'
for i in xrange(1000000):
=======
for i in reversed(xrange(10000)):
>>>>>>> bitbucket/master
  print 'x' + str(i+1) + " = x" + str(i)
print 'x0 = 0'