POSITION:028,114
COLOUR:EUPHORIA
TEXT:00,sequence my_name
TEXT:32,my_name = "David Alan Gay"
COLOUR:STANDARD
TEXT:32,In this program example, we're storing "David Alan Gay" into a sequence
TEXT:16,variable meant to be my name. But understand that Euphoria converts this
TEXT:16,character string into the actual sequence value before it is stored in
TEXT:16,variable "my_name". If you could look inside variable "my_name", this
TEXT:16,is what you would see:
COLOUR:POINTS
TEXT:32,      {68,97,118,105,100,32,65,108,97,110,32,71,97,121}
COLOUR:STANDARD
TEXT:32,It's important to note that a character string of "D" for example is
TEXT:16,NOT the same as 'D'. The former is a character string representation of
TEXT:16,a sequence value that is one element long, while the latter is a
TEXT:16,character representation of an atom value.
