1 2 3 4 5 6 7
#![crate_type = "lib"] pub fn foo() -> Vec<String> { std::env::args() .skip(1) .collect() }