lets_talk / main.py
mafzaal's picture
Initialize project structure with main application file, pyproject configuration, and .gitignore for Python environment.
e7d283a
raw
history blame
87 Bytes
def main():
print("Hello from lets-talk!")
if __name__ == "__main__":
main()