polserver/testsuite/escript/narray/narray6.src

12 lines
117 B
Text
Raw Permalink Normal View History

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