()
| 17 | } |
| 18 | |
| 19 | fn main() { |
| 20 | let names: Vec<String> = vec![ |
| 21 | "alice".to_string(), |
| 22 | "bob".to_string(), |
| 23 | "özgül".to_string(), |
| 24 | "ßad".to_string(), |
| 25 | ]; |
| 26 | for name in names.iter() { |
| 27 | println!("{} -> {}", name, naive_capitalize(name)); |
| 28 | println!("{} -> {}", name, ascii_capitalize(name)); |
| 29 | println!(""); |
| 30 | } |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected