```rust extern crate uptime_lib;
fn main() { match uptimelib::get() { Ok(uptime) => { println!("uptime: {} seconds", uptime.nummilliseconds() as f64 / 1000.0); } Err(err) => { eprintln!("uptime: {}", err); std::process::exit(1); } } } ```
itchyny (https://github.com/itchyny)
This software is released under the MIT License, see LICENSE.