aboutsummaryrefslogtreecommitdiff
path: root/aoc-2020-gleam/src/ext/intx.gleam
blob: 9f0685092a2ded51a04cb5a9138a98be0cbdd97e (plain)
1
2
3
pub fn is_between(number: Int, min: Int, and max: Int) {
  min <= number && number <= max
}