mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 17:14:42 +00:00
5 lines
110 B
Rust
5 lines
110 B
Rust
use std::process::Command;
|
|
|
|
fn main() {
|
|
Command::new("make").output().expect("failed to execute make");
|
|
}
|