automatic cargo CI changes

This commit is contained in:
cscherrNT 2024-03-22 13:55:51 +00:00 committed by github-actions[bot]
parent aba6c723da
commit c36e7fc6b3
2 changed files with 6 additions and 2 deletions

View File

@ -71,7 +71,11 @@ fn main() -> anyhow::Result<()> {
} }
} }
if response.won() { if response.won() {
println!("You win! You took {} guesses. {:?}", game.step() - 1, game.solution()); println!(
"You win! You took {} guesses. {:?}",
game.step() - 1,
game.solution()
);
} else { } else {
println!("You lose! The solution was {:?}.", game.solution()); println!("You lose! The solution was {:?}.", game.solution());
} }

View File

@ -60,7 +60,7 @@ impl<'wl, WL: WordList> Game<'wl, WL> {
solution, solution,
wordlist: wlist, wordlist: wlist,
finished: false, finished: false,
responses: Vec::new() responses: Vec::new(),
}; };
Ok(game) Ok(game)