Execute the following command to run ./solutions/examples/tuple.rs
cargo run --example tupleExercises are in ./exercises/src/lib.rs
pub fn first(t: (bool, u32, char)) -> bool {
todo!();
}Return the first element in the tuple t.
pub fn last(t: (bool, u32, char)) -> char {
todo!();
}Return the last element in the tuple t.
pub fn swap(t: (u32, u32)) -> (u32, u32) {
todo!();
}Swap the first and second elements of the tuple t.
cargo test