Fix missing statement

Fixes https://github.com/satwikkansal/wtfpython/issues/57
This commit is contained in:
Satwik Kansal 2018-01-26 11:20:39 +05:30
parent fc262f2444
commit 2fda1ef070
1 changed files with 1 additions and 0 deletions

1
README.md vendored
View File

@ -755,6 +755,7 @@ another_dict[1.0] = "Python"
>>> some_bool = True
>>> "wtf"*some_bool
'wtf'
>>> some_bool = False
>>> "wtf"*some_bool
''
```