Size: 251 bytes.


 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()
v0 (commit) © 2025 @p13i.io | Load balancer proxied to: cs-code-viewer-1:8080 in 4ms.