Sample project

This commit is contained in:
2021-10-08 14:53:40 +02:00
parent 7e506bfb72
commit ad5f1fa58b
8 changed files with 98 additions and 0 deletions

0
algods/__init__.py Normal file
View File

6
algods/__main__.py Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python3
from algods import algods
if __name__ == '__main__':
algods.main()

2
algods/algods.py Normal file
View File

@ -0,0 +1,2 @@
def main():
print("Hello world!")