This commit is contained in:
2018-08-15 17:04:21 +02:00
parent 1de8ced3d5
commit 3e41debde1
55 changed files with 1015 additions and 277 deletions

8
script/testmain.py Normal file
View File

@@ -0,0 +1,8 @@
def add(a1, a2):
print __name__
return a1+a2
if __name__ == "__main__":
print add(4,3)