1.2.1. Tuple constructors

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