If you need x= a[1] + a[2] then you'll need to create a standard array of
RAM variables.
Or do something like this;
Code:Main: a = 1 GOSUB GetConst X = b a = 2 GOSUB GetConst X = X + b ' now X = a[1]+a[2] GOTO Main GetConst: LOOKUP a,[1,2,3,4,5,6,7],b RETURN
Bookmarks