index
:
gleam_aoc2020
main
gleam aoc 2020
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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 }