Initial commit

This commit is contained in:
David Beazley
2023-07-16 20:21:00 -05:00
parent 82e815fab2
commit 7d4b30154a
259 changed files with 600233 additions and 2 deletions

15
Solutions/7_2/sample.py Normal file
View File

@@ -0,0 +1,15 @@
# sample.py
from logcall import logged, logformat
@logged
def add(x,y):
return x+y
@logged
def sub(x,y):
return x-y
@logformat('{func.__code__.co_filename}:{func.__name__}')
def mul(x,y):
return x*y