shell output.

use std::io::{self, Write}; fn main() -> io::Result<()> { let stdout = io::stdout(); let mut handle = stdout.lock(); handle.write_all(b"\x1bc")?; Ok(()) }

推荐http://www.1994july.club/?cat=518

猜你喜欢

转载自www.cnblogs.com/vwvwvwgwg/p/12822874.html