Put some thought and documentation effort into process::ExitCode

This commit is contained in:
Scott McMurray 2018-02-27 10:31:17 -08:00
parent e20f7b2ea7
commit fc2e4e7833
2 changed files with 53 additions and 25 deletions

View file

@ -14,5 +14,5 @@
use std::process::ExitCode;
fn main() -> ExitCode {
ExitCode(0)
ExitCode::SUCCESS
}