Add main.py and Makefile

This commit is contained in:
profit 2026-01-18 16:11:50 -06:00
commit 0ebbe304c1
2 changed files with 7 additions and 0 deletions

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
main:
python3 main.py

5
main.py Normal file
View File

@ -0,0 +1,5 @@
def main():
print("Hello from Profit!")
if __name__ == "__main__":
main()