You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After code using println! starts working, I don't think rustaceans should have to rewrite their code using finer error control.
println!("Hello, world") should not cause a panic when piped into anything. I believe the default behaviour should be to ignore errors, people wanting finer error control can still writeln! to stdout.
The text was updated successfully, but these errors were encountered:
I think the panicking behaviour is undesirable too, but if it's something you want control over now, you can use the try_print crate, which should do what you want.
After code using
println!
starts working, I don't think rustaceans should have to rewrite their code using finer error control.println!("Hello, world")
should not cause a panic when piped into anything. I believe the default behaviour should be to ignore errors, people wanting finer error control can stillwriteln!
to stdout.The text was updated successfully, but these errors were encountered: