#!/usr/bin/env python3 """Main entry point.""" def main(): """Main function.""" print("Hello, World!") if __name__ == "__main__": main()