more functionality

This commit is contained in:
Vítor Santos Costa
2012-11-05 13:49:15 +00:00
parent eb63f30ab2
commit 06b915d568
3 changed files with 204 additions and 16 deletions

View File

@@ -1,3 +1,8 @@
i = 5
def f(arg=i):
print arg
def multiply(a,b):
print "Will compute", a, "times", b
c = 0