Files
CommonCode/cache_checker.py
2025-10-03 14:28:55 -04:00

12 lines
113 B
Python

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