moveForward()
if isOnClosedSwitch {
toggleSwitch()
}
else if isBlockedLeft && isBlocked {
turnRight()
moveForward()
turnRight()
}
if isOnGem {
collectGem()
}
else if !isBlockedLeft && !isBlockedRight && isBlocked {
turnLeft()
moveForward()
turnLeft()
}
}