poopy
poopy
I think it should be possible to do something like this: ```rust match [1, 2, 3, 4, 5, 6] { [1, .., 6] => "something that starts with 1 and...
I'm assuming these are supposed to be `2`?
there are so many examples (and they're really cool), it would be nice with a simple "start here" example that just moves a "thing" from A to B or something....
# Objective The `ArgList::push` family of methods consume `self` and return a new `ArgList` which means they can't be used with `&mut ArgList` references. ```rust fn foo(args: &mut ArgList) {...