1 2 3 4 5 6 7
use std::env; /// Returns a Vec<String> of all arguments sent to the program by the OS. #[inline] pub fn get_args() -> Vec<String> { env::args().collect() }