Merge pull request #1 from digitalvectorz/digitalvectorz-patch-yield

Update api.rst
This commit is contained in:
Johnathon Sage 2015-11-14 16:22:15 -05:00
commit 01fb8935fb

View File

@ -1514,7 +1514,7 @@ infinite series without consuming infinite amount of memory.
=> (import random)
=> (defn random-numbers [low high]
... (while True (yield (.randint random low high))))
=> (list-comp x [x (take 15 (random-numbers 1 50))])])
=> (list-comp x [x (take 15 (random-numbers 1 50))])
[7, 41, 6, 22, 32, 17, 5, 38, 18, 38, 17, 14, 23, 23, 19]