1 2 3 4 5 6 7 8
"""Some module docstring""" import sys def main(): print("Hello world!", file=sys.stderr) if __name__ == '__main__': main()