Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 204 Bytes

0024-标准输入.md

File metadata and controls

11 lines (10 loc) · 204 Bytes

从浏览器读取参数,同python,第一个参数是可执行文件路径,后面是参数:

for arg in std::env::args() {
	println!("{}", arg);
}

// cargo run a b c ==>
// a
// b
// c