1.2.43. test/regress/rt-1.01.43

Start felix section to test/regress/rt-1.01.43-0.flx[1 /1 ]
     1: #line 1709 "./lpsrc/flx_regress.pak"
     2: //Check generators
     3: #import <flx.flxh>
     4: 
     5: gen f ():int = {
     6:   var i:int; forall i in 0 upto 5 do
     7:     yield i;
     8:   done;
     9:   halt "Call exhausted generator";
    10: }
    11: 
    12: var g = the f;
    13: print$ g (); endl;
    14: print$ g (); endl;
    15: print$ g (); endl;
    16: print$ g (); endl;
End felix section to test/regress/rt-1.01.43-0.flx[1]
Start data section to test/regress/rt-1.01.43-0.expect[1 /1 ]
     1: 0
     2: 1
     3: 2
     4: 3
End data section to test/regress/rt-1.01.43-0.expect[1]