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

10 lines
126 B
Text

program test()
var a := array { 1, 5, 8, 12 };
print( a[1] );
print( a[2] );
print( a[3] );
print( a[4] );
endprogram