7 lines
183 B
Rust
7 lines
183 B
Rust
![]() |
fn main() {
|
||
|
let a = std::process::Command::new("echo")
|
||
|
.arg("1")
|
||
|
,arg("2") //~ ERROR expected one of `.`, `;`, `?`, or an operator, found `,`
|
||
|
.output();
|
||
|
}
|