1pub fn test_getargs() 2{ 3 let args:Vec<_> = std::env::args().collect(); 4 println!("args = {:?}",args); 5}