Updated at_cache (markdown)

Lerking
2024-03-12 08:34:03 +01:00
parent 1449ad3279
commit 4b4b704b38

@@ -1,6 +1,7 @@
# @cache
The @cache decorator can be import with.
´´´python
```python
from functools import cache
@cache
@@ -10,4 +11,4 @@ def some_loop_function():
if i%25:
mod25.append(i)
return mod25
´´´
```