example_shutdown/
example_shutdown.rs

1//! How to shut down the machine.
2
3use system_shutdown::shutdown;
4
5fn main() {
6    match shutdown() {
7        Ok(_) => println!("Shutting down, bye!"),
8        Err(error) => eprintln!("Failed to shut down: {}", error),
9    }
10}