AMOSi:Array
From Amiga Coding
an example can be found on AMOSPro_Tutorial:Tutorials/Interface/Sliders.AMOS
Returns the address in memory of the first item in your array.
<pre>
address=ARRAY(list(0))
address=ARRAY(list$(0))
address=ARRAY(list#(0))
</pre>
list is the name of your array, and can contain any data you like.