aboutsummaryrefslogtreecommitdiff
path: root/aoc-2020-gleam/src/ext/genericx.gleam
blob: 57ce450b902fa641e2a56f17af3db5b88e3068d5 (plain)
1
2
3
4
5
6
7
pub fn equals(left: a, right: a) -> Bool {
  left == right
}

pub fn different(left: a, than right: a) -> Bool {
  left != right
}