POSITION:030,114
IMAGE:graphics\image07.bmp
POSITION:200,114
COLOUR:STANDARD
TEXT:00,Assigning values to sequence variables is just
TEXT:16,like assigning values to atom variables. Sequence
TEXT:16,variables can be given an actual value, or the
TEXT:16,result of an expression. And as with atom variables,
TEXT:16,the expressions can be arithmetic, relational or
TEXT:16,logical. However, because sequences consist of
TEXT:16,linked data objects instead of a single one, there
TEXT:16,are a few twists to learn about. It's important to
TEXT:16,note that the examples used in this chapter can
TEXT:16,also be applied to object type variables.
X_ADJUST:028
TEXT:32,Here's a simple example of a sequence variable being assigned a value:
COLOUR:EUPHORIA
TEXT:32,sequence list_of_values
TEXT:32,list_of_values = {1,2,3,4,5,6,7,8,9,0}
