TadoTheRustacean@programming.dev to Programmer Humor@programming.devEnglish · 1 year agothisIsGoingToBeASeriousDebateprogramming.devimagemessage-square38fedilinkarrow-up1284arrow-down134
arrow-up1250arrow-down1imagethisIsGoingToBeASeriousDebateprogramming.devTadoTheRustacean@programming.dev to Programmer Humor@programming.devEnglish · 1 year agomessage-square38fedilink
minus-square30p87@feddit.delinkfedilinkarrow-up10·1 year agoNo, more like use std::process::Command; fn main() { Command::new("sh").arg("-c").arg("echo Hello World!").spawn().unwrap(); } . Just a little bit shorter, as it seems /s
minus-square30p87@feddit.delinkfedilinkarrow-up6·1 year agoI did too. Multiple times in fact, I had to look at the other Rust code!
No, more like
use std::process::Command; fn main() { Command::new("sh").arg("-c").arg("echo Hello World!").spawn().unwrap(); }
.
Just a little bit shorter, as it seems /s
I just fucking threw up
I did too. Multiple times in fact, I had to look at the other Rust code!