8 lines
121 B
Python
8 lines
121 B
Python
|
|
#!/usr/bin/env python
|
||
|
|
# -*- coding: UTF-8 -*-
|
||
|
|
|
||
|
|
if __name__ =='__main__' :
|
||
|
|
print('main')
|
||
|
|
else :
|
||
|
|
print('not main')
|