From 2fda1ef070a7d683407bcb1d6625c3bb8f0ca3de Mon Sep 17 00:00:00 2001 From: Satwik Kansal Date: Fri, 26 Jan 2018 11:20:39 +0530 Subject: [PATCH] Fix missing statement Fixes https://github.com/satwikkansal/wtfpython/issues/57 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d3e318b..68b6c09 100644 --- a/README.md +++ b/README.md @@ -755,6 +755,7 @@ another_dict[1.0] = "Python" >>> some_bool = True >>> "wtf"*some_bool 'wtf' +>>> some_bool = False >>> "wtf"*some_bool '' ```