1extern crate port_scanner; 2use port_scanner::request_open_port; 3 4fn main() { 5 println!("Port {}", request_open_port().unwrap_or(0)); 6}