1.2.10. Array::rev

Start felix section to test/stdlib/slrt-1.01.10-0.flx[1 /1 ]
     1: #line 242 "./lpsrc/flx_stdlib_regress.pak"
     2: //Check arrays
     3: #import <flx.flxh>
     4: val f = proc (i:int) { print i; };
     5: iter f$ rev$ array(4, 5); endl;
     6: iter f$ rev$ array(4, 5, 6); endl;
     7: iter f$ rev$ array(4, 5, 6, 7); endl;
End felix section to test/stdlib/slrt-1.01.10-0.flx[1]
Start data section to test/stdlib/slrt-1.01.10-0.expect[1 /1 ]
     1: 54
     2: 654
     3: 7654
End data section to test/stdlib/slrt-1.01.10-0.expect[1]