polserver/testsuite/escript/array/array12.src

12 lines
178 B
Text
Raw Permalink Normal View History

function foo( byref elem )
print( elem );
elem := 12;
endfunction
program array12()
var a := { 82, 43, 56, 23, 51 };
print( a );
foo( a[2] );
print( a );
endprogram