This crate entroduces fprint! macro which provides flushed print
fprint!
toml [dependencies] fprint = "0.1"
```rust use std::io::Read;
fn main() let mut buffer = String::new(); fprint!("Enter your number: "); io::stdin().read_line(&mut buffer); } ```