Open
Description
[a, b] = [1,2,3]
# or
[a, *b] = [1,2,3]
assert(a == 1)
assert(b == [2, 3])
How to implement: https://gleam.run/news/v0.33-exhaustive-gleam/
[a, b] = [1,2,3]
# or
[a, *b] = [1,2,3]
assert(a == 1)
assert(b == [2, 3])
How to implement: https://gleam.run/news/v0.33-exhaustive-gleam/