polserver/testsuite/escript/narray/narray18.src

20 lines
277 B
Text
Raw Permalink Normal View History

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 ****/