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

12 lines
199 B
Text

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