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

11 lines
117 B
Text

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