use musicxml::*;
fn main() {
let output_path = "./target/Grande Valse Brillante.mxl";
let score =
read_score_partwise("./musicxml/tests/Grande Valse Brillante.musicxml").expect("Failed to read input test file");
println!(
"Writing to '{}'...{}",
output_path,
if write_partwise_score(output_path, &score, true, false).is_ok() {
"SUCCESS"
} else {
"FAILED"
}
);
}