1fn main() { 2 let args = std::env::args().skip(1).collect::<Vec<_>>(); 3 assert_eq!( 4 args, 5 ["hello", "this", "", "is an argument", "with 🚩 emoji"] 6 ); 7} 8 9