POSITION:028,114
COLOUR:STANDARD
TEXT:00,Instead of using constant elements in a sequence value, you are also
TEXT:16,allowed to use variable names and expressions to define the elements in
TEXT:16,a sequence value to be stored in a sequence variable: 
COLOUR:EUPHORIA
TEXT:32,sequence mixed_bunch
TEXT:16,atom some_atom_element
TEXT:32,some_atom_element = 502
TEXT:16,mixed_bunch = {"Euphoria", some_atom_element, some_atom_element/2}
COLOUR:STANDARD
TEXT:32,Before this sequence value is stored in variable "mixed_bunch", each
TEXT:16,individual element must be worked out. In element 1, the character string
TEXT:16,"Euphoria" is converted to a true sequence value. In element 2, the
TEXT:16,value of "some_atom_element" is used. In element 3, the expression of
TEXT:16,the value of "some_atom_element" being divided by 2 is worked out. Once
TEXT:16,these steps are completed, the actual value is stored in "mixed_bunch".
