build_test 0.1.2

Just a test
1
2
3
4
5
6
7
8
9
10
use std::process::Command;
fn main() {
    // 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");
    
}