mirror of
https://github.com/hwchase17/langchain.git
synced 2025-04-29 04:16:02 +00:00
14 lines
160 B
Python
14 lines
160 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
|
|
def main() -> int:
|
|
print("Hello World!") # noqa: T201
|
|
|
|
return 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|