In Pascal you have the ability to reference and dereference an address in memory.
In Firewing there is the AddressOf function which is sort of equivalent to @MyVariable in Pascal.
What would be the equivalent to dereferencing that address. (In Pascal I would write MyVariable^)
i.e. I have a UShort variable which actually holds the address of the variable or constant I want to access and this address could be the first location of a string or array. How do I dereference and typecast it? Is passing it ByRef to a procedure or function the only way?
JohnB
