Branching with boolean expressions.
n % 2 == 0
returns (bool)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract Parity { function isEven(uint256 n) external pure returns (bool) { // TODO } }