Newbie question. How to calculate the value of the formula A f B, where f - the binary function OR or AND?
Use '&&' for AND and use '||' for OR, for example:
bool A; bool B; bool resultOfAnd = A && B; // Returns the result of an AND bool resultOfOr = A || B; // Returns the result of an OR