Comment on thisIsGoingToBeASeriousDebate

<- View Parent
pranaless@beehaw.org ⁨1⁩ ⁨year⁩ ago
use std::process::Command;

fn main() {
    Command::new("sh")
        .arg("-c")
        .arg("echo Hello World!")
        .spawn()
        .unwrap();
}

Like this?

source
Sort:hotnewtop