POSITION:028,114
COLOUR:EUPHORIA
TEXT:00,value1 = 50
TEXT:16,value2 = 25
TEXT:16,test1 = value1 < 10 and value2 = 25
COLOUR:STANDARD
TEXT:32,Because variable "value1" is not smaller than 10, the first relational
TEXT:16,expression is false. Variable "value2" is equal to 25, so the second
TEXT:16,part of the "and" expression is true. But because one of the relational
TEXT:16,expressions were not true, "test1" is assigned a value of 0.
COLOUR:EUPHORIA
TEXT:32,test2 = value1 > 5 and value2 = 12.5 * 2
COLOUR:STANDARD
TEXT:32,Because variable "value1" is larger than 5, the first relational
TEXT:16,expression is true. Variable "value2" is equal to 12.5 * 2, so the
TEXT:16,second relational expression of the "and" logical expression is true.
TEXT:16,Because both expressions are true, "test2" is assigned a value of 1.

