Skip to content

Commit 08cb18f

Browse files
author
czheo
committed
2 parents 88f2c67 + a096187 commit 08cb18f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def push(lst, x):
183183
[] /push/ 1 /push/ 2 /push/ 3
184184
# returns [1,2,3]
185185
```
186-
186+
<!---
187187
### stream
188188
189189
``` python
@@ -196,7 +196,7 @@ list(stream() << [1,2,3] << range(5))
196196
list((stream() << [1, 1] << (lambda x, y: x + y)) /take/ 10)
197197
# [1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
198198
# This is the first 10 items of an infinite fibonacci stream
199-
# If a function is met, it will infinitely take the last N previous items to generate the next item.
199+
# If a function is met, stream will infinitely take the last N previous items as the input of the lambda to generate the next item.
200200
```
201-
201+
-->
202202
More receipes: https://github.com/czheo/syntax_sugar_python/tree/master/recipes

0 commit comments

Comments
 (0)