alDenteNot method
TODO teamNext Function NOT-READY Make: functions that DO NOT make alDente
Implementation
void alDenteNot(var firstFunction, var secondFunction, bool clause) {
bool _clause = clause;
num _counter = 0;
do {
_counter++;
firstFunction();
secondFunction();
// CODE: add logic for not.alDente
// isolateFuncOne() // roll inside isolate
// isolateFuncTwo()
if (_counter == 4) (_clause = true); // Backdoor
} while (!_clause);
}