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() {
|
if response.won() {
|
||||||
println!(
|
println!("You win! You took {} guesses.", game.step() - 1);
|
||||||
"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());
|
||||||
}
|
}
|
||||||
|
@ -88,9 +84,6 @@ fn get_word(_cli: &Cli, step: usize) -> std::io::Result<Word> {
|
||||||
let stdin = std::io::stdin();
|
let stdin = std::io::stdin();
|
||||||
let mut stdout = std::io::stdout();
|
let mut stdout = std::io::stdout();
|
||||||
|
|
||||||
// TODO: get user input
|
|
||||||
// TODO: validate user input
|
|
||||||
|
|
||||||
print!("guess {step} > ");
|
print!("guess {step} > ");
|
||||||
stdout.flush()?;
|
stdout.flush()?;
|
||||||
stdin.read_line(&mut word)?;
|
stdin.read_line(&mut word)?;
|
||||||
|
|
Loading…
Reference in New Issue