This commit is contained in:
debris 2016-01-15 13:12:37 +01:00
commit 92619bcef8

View File

@ -34,3 +34,8 @@ macro_rules! xx {
From::from(From::from($x))
}
}
pub fn flush(s: String) {
::std::io::stdout().write(s.as_bytes()).unwrap();
::std::io::stdout().flush().unwrap();
}