mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
14 lines
146 B
Python
14 lines
146 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import sys
|
||
|
|
||
|
|
||
|
def main() -> int:
|
||
|
print("Hello World!")
|
||
|
|
||
|
return 0
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
sys.exit(main())
|