Returns the memory address of an array
x = ArrayAddr[(] array() [)]
x : avar
ArrayAddr() returns the memory location of the first byte of the array data. (Not string array.)
Debug.Show
Dim a|(100), b$(4)
Trace ArrayAddr(a|())
Trace V:a|(0)
b$(0) = "GFA"
Trace ArrayAddr b$()
Trace V:b$(0)
{Created by Sjouke Hamstra; Last updated: 17/05/2017 by James Gaite}