Variables, as you probably know, will contain one value, for instance, the variable
a might contain the value 10:
a =10
Arrays are a special kind of variable that contain more than one value. For example,
myarray might contain a list of 4 numbers......7, 4, 15, 12:
myarray = [7,4,15,12]
Each element can be referenced with
selectExample
myarray select 2
Which would be 15 because the first element in the array is 0, the next is 1......and so on.
Boolean values are easy enough, they can be either of 2 values.......0(false).....or......1(true).
I trust this has muddied the waters a bit.
Planck