1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env python3
# cs/labs/python/hello_world.gpt.py
# cs/labs/python/hello_world.py
def say_hello(target: str = "World") -> str:
return f"Hello {target}!"
def main() -> None:
print(say_hello())
if __name__ == "__main__":
main()