polserver/testsuite/escript/array/array08.src

11 lines
130 B
Text
Raw Permalink Normal View History

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