1 2 3 4 5 6 7 8
fn main() { eprintln!( "This is stderr text" ); println!( "This is stdout text" ); eprintln!( "This is stderr text" ); }