mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
10 lines
145 B
Python
10 lines
145 B
Python
def Call2():
|
|
print('Call2')
|
|
|
|
def Call1(a):
|
|
print('Call1')
|
|
|
|
if __name__ == '__main__':
|
|
Call1(Call2())
|
|
print('TEST SUCEEDED!')
|