polserver/testsuite/escript/narray/narray18.src
2015-12-19 02:31:08 +01:00

19 lines
297 B
Text

program test()
var b := { { 0, 0 } };
print( b );
b.insert( 1, { 21, 31 } );
print( b );
b.insert( 1, { 22, 32 } );
print( b );
b.insert( 1, { 23, 33 } );
print( b );
endprogram
/**** Expected Output Begins: *****
(no)
***** Expected Output Ends ****/