Hello
Since 1.0.0 Beta i am very confused.
How i can flush() the standard output in the Terminal, for:
use std::thread;
use std::io::Write; // ?
fn main(){
let interval = 1000;
for x in 17u8..180{
thread::sleep_ms(interval);
print!("\r{} = {}", x, x as char);
// Write.flush();
}
}
sorry for my bad english.
Greetings