~manxi-david/pyeffect/pyeffect

« back to all changes in this revision

Viewing changes to src/Examples/func.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
def printSquare(x):
 
2
        x=x*x
 
3
        print("Square: ",x)
 
4
start:
 
5
        z=4
 
6
        print("First: ",z)
 
7
        printSquare(z)
 
8
        print("Last: ",z)
 
9
        exit(0)