1 2 3 4 5 6 7
use std::process::exit; fn main() { println!("test-stdout"); eprintln!("test-stderr"); exit(1); }