I\'m having some problems with some basic I/O stuff. Specifically, the text \"Please enter your name\" is written to the output after I type in my name and
use std::io::{self, Write}; fn main() { print!("Please enter your name: "); let _ = io::stdout().flush(); // your io code }