POSITION:028,114
COLOUR:STANDARD
TEXT:00,Variable declarations usually appear at the top of the program, so they
TEXT:16,are one of the first things typed in by the programmer. However, there
TEXT:16,are exceptions where they may appear elsewhere in the program. A
TEXT:16,variable declaration is entered only once for every variable in the
TEXT:16,program. Once entered, you cannot enter a second variable declaration
TEXT:16,using the same variable name, even if the variable type is different.
TEXT:32,Let's start entering our very first Euphoria statements. To declare
TEXT:16,a variable named "address" that holds sequence type data objects, we
TEXT:16,enter:
COLOUR:EUPHORIA
TEXT:32,     sequence address
COLOUR:STANDARD
TEXT:32,To declare a variable named "age" that holds atom data objects we enter:
COLOUR:EUPHORIA
TEXT:32,     atom age
