This commit is contained in:
Daniel B Sherry 2025-08-27 11:34:00 -05:00
parent cf673381c5
commit a9aead8bd6
11 changed files with 150 additions and 470 deletions

6
test.py Normal file
View file

@ -0,0 +1,6 @@
def add(a, b) -> int:
return a + b
if __name__ == "__main__":
print(add(2, 8))