10 lines
134 B
Python
10 lines
134 B
Python
import sys
|
|
|
|
# cc:main function
|
|
def main(argv=None):
|
|
if argv is None:
|
|
argv = sys.argv
|
|
|
|
print "Hello, world"
|
|
|
|
return |