Sub Process_Globals
Dim ThisVariable as Int = 0
Dim ThatVariable as Int = 0
Dim TheOtherVariable as Int = 0
Dim ArrayOfInts()
ArrayOfInts = Array as Int(&ThisVariable,&ThatVariable,&TheOtherVariable) ' Where the & means _ something that would make this mean a POINTER to ThisVariable, etc.)
End Sub
Sub Activity_Create(FirstTime AsBoolean)
Dim z as Int
for z = 0 to 2
ArrayOfInts(z) = z
next
' Here, I would like to have changed the globals so that ThisVariable = 1, ThatVariable = 2, TheOtherVariable = 3
end sub