generated from PlexSheep/rs-base
automatic cargo CI changes
cargo devel CI / cargo CI (push) Successful in 41s
Details
cargo devel CI / cargo CI (push) Successful in 41s
Details
This commit is contained in:
parent
da9a7cd036
commit
6158043a60
|
@ -71,11 +71,7 @@ fn main() -> anyhow::Result<()> {
|
|||
}
|
||||
}
|
||||
if response.won() {
|
||||
println!(
|
||||
"You win! You took {} guesses. {:?}",
|
||||
game.step() - 1,
|
||||
game.solution()
|
||||
);
|
||||
println!("You win! You took {} guesses.", game.step() - 1);
|
||||
} else {
|
||||
println!("You lose! The solution was {:?}.", game.solution());
|
||||
}
|
||||
|
@ -88,9 +84,6 @@ fn get_word(_cli: &Cli, step: usize) -> std::io::Result<Word> {
|
|||
let stdin = std::io::stdin();
|
||||
let mut stdout = std::io::stdout();
|
||||
|
||||
// TODO: get user input
|
||||
// TODO: validate user input
|
||||
|
||||
print!("guess {step} > ");
|
||||
stdout.flush()?;
|
||||
stdin.read_line(&mut word)?;
|
||||
|
|
Loading…
Reference in New Issue