~manxi-david/pyeffect/pyeffect

« back to all changes in this revision

Viewing changes to Examples/while.3p

  • Committer: dvspeed
  • Date: 2011-12-26 13:18:36 UTC
  • Revision ID: manxi.david@gmail.com-20111226131836-mvoy9y32z0ujxvm1
-Change of folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
start:
2
 
        x=10
3
 
        y=9
4
 
        while x==10:
5
 
                y=y*2
6
 
                print("X: ")
7
 
                print(x)
8
 
                x=x+1
9
 
        exit(x)