Flow control for in RBE

This commit is contained in:
2023-09-26 11:03:55 -04:00
parent 7204f08177
commit 460741740b
5 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
fn main() {
let names = vec!["Bob", "Frank", "Ferris"];
for name in names.iter() {
match name {
&"Ferris" => println!("There is a rustacean among us!"),
_ => println!("Hello {}", name),
}
}
println!("names: {:?}", names);
}