I want to access variables from within a function using globals
Global x y z
Answer = MyFunction(4)
y
Function Result = MyFunction(x)
y=x+1;
z=y+1;
I would like to be able to access the value of y from the last time I call the function. Is it possible to do this?