“Nested” If-Then-Else
CONCEPT: An advantage of the general conditional is that statement lists can contain other conditionals
If flip1 = guess1 Then
If flip2 = guess2 Then
score = “win win”
Else
score = “win lose”
End If
Else
If flip2 = guess2 Then
score = “lose win”
Else
score = “lose lose”
End If
End If