feat: main structure + basic math testing

This commit is contained in:
2025-11-14 23:00:38 +01:00
parent baa74c8b0a
commit 90f0e44e22
7 changed files with 40 additions and 2 deletions

8
src/main.py Normal file
View File

@@ -0,0 +1,8 @@
from modules.math import t_compound_interest, t_compound_interest_algorigthm, t_exponent
from modules.strings import t_strings
if __name__=="__main__":
t_strings()
t_exponent(2,8)
print(t_compound_interest(100, 20 / 100, 2, 12))
print(t_compound_interest_algorigthm(100, 20 / 100, 2, 12))