POSITION:028,114
COLOUR:STANDARD
TEXT:00,If we changed the syntax around to place the referenced sequence element
TEXT:16,on the left side of the equal sign, we would have the ability to change
TEXT:16,the value of a specific element:
COLOUR:POINTS
TEXT:32,sequence variable element number(s)     expression
COLOUR:EUPHORIA
TEXT:00,                 [                 ] =
COLOUR:STANDARD
TEXT:32,Here is a program example that demonstrates how to change both a single
TEXT:16,element and a range of elements:
COLOUR:EUPHORIA
TEXT:32,sequence bunch
TEXT:16,bunch = {"cat",5,{1,9,8,4},{0,0,0}}
TEXT:16,bunch[1][1] = 'b'
TEXT:16,bunch[2] = {7,7,7} + 1
TEXT:16,bunch[3][3..4] = {9,7}
TEXT:16,bunch[4][1..3] = -20
