def hello(name: str = "World"): print(f"Hello, {name}!") def main(): hello() if __name__ == "__main__": main()