add: test helper binaries

This commit is contained in:
2023-12-01 22:33:52 +00:00
parent 212ae4847a
commit 342ac49bea
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
use std::{env, thread, time};
fn main() {
let myi: u64;
let args: Vec<String> = env::args().collect();
if args.len() > 1 {
myi = args[1].parse().unwrap();
thread::sleep(time::Duration::from_secs(myi));
}
}