uv/foo/hello.py
2025-07-03 16:22:31 -04:00

6 lines
81 B
Python

def main():
print("Hello from foo!")
if __name__ == "__main__":
main()