luaforwindows/SciTE/scite-debug/tests/test1.py

9 lines
66 B
Python
Raw Normal View History

def one(x):
print x
def two(x,y):
one(x)
one(y)
two(10,20)