This commit is contained in:
boccioli_m
2015-09-02 10:43:04 +02:00
parent 79e9aac763
commit 45202c5b09
748 changed files with 54734 additions and 0 deletions

15
script/testLocalVar1.py Normal file
View File

@@ -0,0 +1,15 @@
global aa
global bb
def bb():
print "bb"
def aa():
print "aa"
bb()
print 'testLocalVar1- a: ' + str(a)
print 'testLocalVar1- b: ' + str(b)
time.ctime()
print time.strftime('%Y.%m.%d %H:%M:%S')
bb()
aa()
set_return("OK 1")