1.3.3. List::iter

Start felix section to test/stdlib/slrt-1.02.03-0.flx[1 /1 ]
     1: #line 311 "./lpsrc/flx_stdlib_regress.pak"
     2: //Check lists
     3: #import <flx.flxh>
     4: open List;
     5: val f = proc (i:int) { print i; };
     6: iter f$ list[int](); endl;
     7: iter f$ list(4); endl;
     8: iter f$ list(4, 5); endl;
     9: iter f$ list(4, 5, 6); endl;
    10: iter f$ list(4, 5, 6, 7); endl;
End felix section to test/stdlib/slrt-1.02.03-0.flx[1]
Start data section to test/stdlib/slrt-1.02.03-0.expect[1 /1 ]
     1: 
     2: 4
     3: 45
     4: 456
     5: 4567
End data section to test/stdlib/slrt-1.02.03-0.expect[1]