Monday, October 3, 2011

Picky note

If you write this in your code:


if(isOpen == TRUE)
{
    myOpenDoor();
}
else if(isOpen == FALSE)
{
    myCloseDoor();
}


you don't understand what logic is about.