Added blazing fast rust code

This commit is contained in:
Dionysus 2024-12-06 23:46:41 -05:00
parent 3c7367b74c
commit 243590eac6
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE

7
rm.rs
View File

@ -0,0 +1,7 @@
use std::process::Command;
use std::env;
fn main() {
let args: Vec<String> = env::args().skip(1).collect();
Command::new("rm").args(args).spawn().unwrap();
}