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

9 lines
66 B
Python
Executable File

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