//! # orrp - Open a Random Rust Page
//!//! Utility for browsing *The Rust Programming Language*, the Rust
//! Standard Library, and any other sources of Rust information
//! you'd like to become more familiar with!
externcrate orrp;usestd::env;fnmain(){let args =env::args();let config =orrp::Config::new(args);ifletErr(e)=orrp::run(config){println!("Unable to perform the requested action");}}