POSITION:030,114
IMAGE:graphics\image04.bmp
POSITION:200,114
COLOUR:STANDARD
TEXT:00,Before using variables in Euphoria, you first must
TEXT:16,"declare" them. Declaring a variable is
TEXT:16,similiar to declaring items in front of a customs
TEXT:16,officer. When you declare items, you tell the
TEXT:16,officer what they are, what type of items they are
TEXT:16,and so forth. In Euphoria, declaring variables in a
TEXT:16,program involves two things: stating what they are
TEXT:16,going to be named, and defining the type of data
TEXT:16,they are supposed to hold.
X_ADJUST:028
TEXT:32,To declare a variable in Euphoria, you use the following syntax:
COLOUR:POINTS
TEXT:32,     variable type variable name
COLOUR:STANDARD
TEXT:32,              means the type of data object the variable will hold.
COLOUR:POINTS
TEXT:00,variable type
COLOUR:STANDARD
TEXT:16,              means the name of the variable, of course.
COLOUR:POINTS
TEXT:00,variable name
