debugging

This commit is contained in:
2020-11-16 18:55:00 +00:00
parent 3ed6b9422d
commit 226c936e72

View File

@@ -2,6 +2,9 @@ pub fn handify(input: &str) -> String {
let input = input.to_uppercase(); let input = input.to_uppercase();
let input = input.replace(" ", " 👏 "); let input = input.replace(" ", " 👏 ");
println!("{:?}", input.split_whitespace().collect::<Vec<&str>>()); println!("{:?}", input.split_whitespace().collect::<Vec<&str>>());
for i in input.split_whitespace().collect::<Vec<&str>>() {
println!("{:?}", i);
}
input input
} }