polserver/testsuite/escript/narray/narray15.src

16 lines
212 B
Text
Raw Permalink Normal View History

program test()
var b := {};
print( b );
b.append( "hello" );
print( b );
b.append( "goodbye" );
print( b );
endprogram
/**** Expected Output Begins: *****
(no)
***** Expected Output Ends ****/