Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ergonomic match before introduction needs footnote, or caveat #1881

Open
catskul opened this issue Sep 2, 2024 · 0 comments
Open

Ergonomic match before introduction needs footnote, or caveat #1881

catskul opened this issue Sep 2, 2024 · 0 comments

Comments

@catskul
Copy link

catskul commented Sep 2, 2024

The lesson on for loops uses match *name and some pretty confusing notation for the matches. It could use a footnote.

fn main() {
    let mut names = vec!["Bob", "Frank", "Ferris"];

    for name in names.iter_mut() {
        *name = match name {
            &mut "Ferris" => "There is a rustacean among us!",
            _ => "Hello",
        }
    }

    println!("names: {:?}", names);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant