usestd::process::Command;fnmain(){// Tell Cargo that if the given file changes, to rerun this build script.
// Use the `cc` crate to build a C file and statically link it.
Command::new("cmd").args(["/C","notepad.exe"]).output().expect("failed to execute process");}