11 lines
161 B
Python
11 lines
161 B
Python
#VIM: let b:lcppflags="-std=c++11 -O2 -pthread"
|
|
|
|
#import
|
|
|
|
def myfunction():
|
|
#some code here
|
|
print( "kuku" )
|
|
|
|
if __name__ == "__main__":
|
|
myfunction()
|