polserver/testsuite/escript/narray/narray16.src

13 lines
187 B
Text
Raw Permalink Normal View History

program test()
var b := { 1, 4, 6, 3, 7, 12, 72, 3 };
print( b );
b.sort();
print( b );
endprogram
/**** Expected Output Begins: *****
(no)
***** Expected Output Ends ****/