or method

bool or(
  1. bool firstCondition,
  2. bool secondCondition
)

Implementation

bool or(bool firstCondition, bool secondCondition) {
  return firstCondition || secondCondition; // Corrected from '&&' to '||'
}