diff --git a/src/hands.rs b/src/hands.rs index 01d776a..a68e2bd 100644 --- a/src/hands.rs +++ b/src/hands.rs @@ -2,6 +2,9 @@ pub fn handify(input: &str) -> String { let input = input.to_uppercase(); let input = input.replace(" ", " 👏 "); println!("{:?}", input.split_whitespace().collect::>()); + for i in input.split_whitespace().collect::>() { + println!("{:?}", i); + } input }