This commit is contained in:
2025-10-03 14:28:55 -04:00
parent 4cbdb00e14
commit 4c847f7753
13 changed files with 121 additions and 57 deletions

11
cache_checker.py Normal file
View File

@@ -0,0 +1,11 @@
import ring
@ring.lru()
def hello(a,b,c):
print(a,b,c)
return str(a)+str(b)+str(c)
# %%
hello(1,2,3)