From 1523c6e3bbe93110ef2bebbf3d60ca4be60c728b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 19 Feb 2019 14:52:47 +0100 Subject: [PATCH] Callable --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index f18cc7a..9654ac5 100644 --- a/README.md +++ b/README.md @@ -758,6 +758,12 @@ class Counter: return self.a ``` +```python +>>> c = Counter() +>>> c(), c(), c() +(1, 2, 3) +``` + ### Withable ```python class FileReader():