POSITION:028,114
COLOUR:STANDARD
TEXT:00,You can link as many relational and logical expressions together to make
TEXT:16,larger complex expressions. You can even link arithmetic, relational and
TEXT:16,logical expressions together to formulate a value to be stored in the
TEXT:16,appropriate variable. However, you should know a few important things.
TEXT:32,In a situation where you are using the equal sign (=) in a relational
TEXT:16,expression, Euphoria uses a rule to define when the equal sign is an
TEXT:16,assignment operator and when it is a relational operator. The leftmost
TEXT:16,equal sign on the line is assumed to be an assignment operator. All
TEXT:16,other equal signs that follow are assumed to be relational operators.
TEXT:32,The outcome of arithmetic expressions can be tested with logical
TEXT:16,operators. This means you can do expressions like the following:
COLOUR:EUPHORIA
TEXT:32,complex_result = value1 * 5 and value2 - 8

