1.2.3. Array::_ctor_array

Start felix section to test/stdlib/slrt-1.01.03-0.flx[1 /1 ]
     1: #line 90 "./lpsrc/flx_stdlib_regress.pak"
     2: //Check arrays
     3: #import <flx.flxh>
     4: val x2 = array(3, 4);
     5: print$ x2.[0];
     6: print$ x2.[1];
     7: endl;
     8: 
     9: val x3 = array(5, 6, 7);
    10: print$ x3.[0];
    11: print$ x3.[1];
    12: print$ x3.[2];
    13: endl;
    14: 
    15: val x4 = array(8, 9, 10, 11);
    16: print$ x4.[0];
    17: print$ x4.[1];
    18: print$ x4.[2];
    19: print$ x4.[3];
    20: endl;
End felix section to test/stdlib/slrt-1.01.03-0.flx[1]
Start data section to test/stdlib/slrt-1.01.03-0.expect[1 /1 ]
     1: 34
     2: 567
     3: 891011
End data section to test/stdlib/slrt-1.01.03-0.expect[1]