More Complex Conditionals
v
The basic conditional is too limited, so generalize it
v
General form of an If-statement
If <
T/F expression
> Then
<
statement list
>
End If
v
Example:
If temp >= 212 Then
state = “gaseous”
form = “steam”
End If