usebliss_audio::Song;usestd::env;/**
* Simple utility to print the result of an Analysis.
** Takes a list of files to analyse an the result of the corresponding Analysis.
*/fnmain(){let args:Vec<String>=env::args().skip(1).collect();for path in&args {matchSong::new(&path){Ok(song)=>println!("{}: {:?}", path, song.analysis,),Err(e)=>println!("{}: {}", path, e),}}}