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

11 lines
115 B
Text

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