aboutsummaryrefslogtreecommitdiff
path: root/aoc2023/src/aoc2023.gleam
diff options
context:
space:
mode:
authorHunky Jimpjorps <thechairman@thechairman.info>2023-12-08 09:42:11 -0500
committerHunky Jimpjorps <thechairman@thechairman.info>2023-12-08 09:42:11 -0500
commit82c3ecec3de5111b460910bafe141b3aed478676 (patch)
tree98e1cb821151cea989608b3f55e8a8642fab3da0 /aoc2023/src/aoc2023.gleam
parentc82dee4b12a824ff73dc91f89445d4df75d3c876 (diff)
downloadgleam_aoc-82c3ecec3de5111b460910bafe141b3aed478676.tar.gz
gleam_aoc-82c3ecec3de5111b460910bafe141b3aed478676.zip
updated for new exhaustiveness checks in 0.33
Diffstat (limited to 'aoc2023/src/aoc2023.gleam')
-rw-r--r--aoc2023/src/aoc2023.gleam3
1 files changed, 2 insertions, 1 deletions
diff --git a/aoc2023/src/aoc2023.gleam b/aoc2023/src/aoc2023.gleam
index 30335ee..aab904d 100644
--- a/aoc2023/src/aoc2023.gleam
+++ b/aoc2023/src/aoc2023.gleam
@@ -6,6 +6,7 @@ abcdefgh"
pub fn main() {
let trim = 8
- let <<_:bytes-size(trim), "\n":utf8, rest:bytes>> = bit_array.from_string(str)
+ let assert <<_:bytes-size(trim), "\n":utf8, rest:bytes>> =
+ bit_array.from_string(str)
io.debug(rest)
}