mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
No EOL
185 B
Text
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 |