1initialized = True
2
3def main():
4    print("Hello world!")
5
6if __name__ == '__main__':
7    main()
8