1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-09 22:49:50 +02:00

Fix indentation

This commit is contained in:
Ilyes Hammadi 2017-10-18 15:22:01 +02:00 committed by GitHub
parent 41e9b72fea
commit c8729074ba

2
README.md vendored
View File

@ -202,7 +202,7 @@ def square(x):
sum_so_far = 0
for counter in range(x):
sum_so_far = sum_so_far + x
return sum_so_far
return sum_so_far
```
**Output (Python 2.x):**