Files
ncs/script/testLocalVar1.py
boccioli_m 45202c5b09 Startup
2015-09-02 10:43:04 +02:00

15 lines
249 B
Python

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")