Ignore:
Timestamp:
Mar 22, 2019, 3:45:28 PM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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
Message:

formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/papers/concurrency/examples/Fib.py

    rf8cd310 re73d449  
    1 def Fibonacci():
     1def Fib():
    22        fn = 0; fn1 = fn; yield fn  # suspend
    33        fn = 1; fn2 = fn1; fn1 = fn; yield fn
     
    77
    88
    9 f1 = Fibonacci()
    10 f2 = Fibonacci()
     9f1 = Fib()
     10f2 = Fib()
    1111for i in range( 10 ):
    1212        print( next( f1 ), next( f2 ) )  # resume
Note: See TracChangeset for help on using the changeset viewer.