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

15 lines
228 B
Text

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