polserver/testsuite/escript/array/array06.src

12 lines
122 B
Text
Raw Permalink Normal View History

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