From ef094795e65da06b451470af7856ffafde205a61 Mon Sep 17 00:00:00 2001 From: mau Date: Fri, 19 Jun 2026 16:08:27 +0200 Subject: [PATCH] add: add directives in main --- lru_cache.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lru_cache.py b/lru_cache.py index 1523ff0..aba1c89 100644 --- a/lru_cache.py +++ b/lru_cache.py @@ -20,5 +20,8 @@ def main(): print(cache.get(1)) print(cache.get(0)) + cache.put(0,1) + print(cache.get(0)) + if __name__ == "__main__": main() \ No newline at end of file