PICK retrieves the value stored at certain index of an ARRAY! type variable.
Categoryname
PICK value1 value2
value1 - variable name
value2 - index of the stored variable
This method has no refinements
PICK for any item that a series is made up of, just like in REBOL. Only currently that is BYTE! for ARRAY BYTE! a.k.a. BINARY!
; Where board is an array as declared
Let [board] binary! 10
; filled and changed board in the meantime
for index 50 [ write pick board index write " "]