Changeset e73d449 for doc/papers/concurrency/examples/Fib.py
- Timestamp:
- Mar 22, 2019, 3:45:28 PM (4 years ago)
- Branches:
- ADT, arm-eh, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 1097bb7, d4a60ac
- Parents:
- f8cd310
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/concurrency/examples/Fib.py
rf8cd310 re73d449 1 def Fib onacci():1 def Fib(): 2 2 fn = 0; fn1 = fn; yield fn # suspend 3 3 fn = 1; fn2 = fn1; fn1 = fn; yield fn … … 7 7 8 8 9 f1 = Fib onacci()10 f2 = Fib onacci()9 f1 = Fib() 10 f2 = Fib() 11 11 for i in range( 10 ): 12 12 print( next( f1 ), next( f2 ) ) # resume
Note: See TracChangeset
for help on using the changeset viewer.