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

11 lines
No EOL
185 B
Text

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