Rust Case

[Solved] Rust Case | Rust - Code Explorer | yomemimo.com
Question : rust case

Answered by : fabrice-hategekimana

 let number = 13; match number { // Match a single value 1 => println!("One!"), // Match several values 2 | 3 | 5 | 7 | 11 => println!("This is a prime"), // TODO ^ Try adding 13 to the list of prime values // Match an inclusive range 13..=19 => println!("A teen"), // Handle the rest of cases _ => println!("Ain't special"), // TODO ^ Try commenting out this catch-all arm }

Source : https://doc.rust-lang.org/rust-by-example/flow_control/match.html | Last Update : Sat, 25 Jun 22

Answers related to rust case

Code Explorer Popular Question For Rust