polserver/testsuite/escript/array/array07.src

13 lines
142 B
Text
Raw Permalink Normal View History

program test()
var a := array( 1 );
a[2] := "hello";
a[4] := "world";
print( a[1] );
print( a[2] );
print( a[4] );
endprogram