1 2 3 4 5 6 7 8 9 10 11 12 13 14
# meowsic notes -> chord name in rust (`no-std` friendly too) :) ## use ```rust use meowsic::get_chords; fn main() { println!("{:?}", get_chords(&vec![60, 64, 67, 71])); //["Cmaj7", "Emb6", "Em/C", "G6/11", "G6/C", "Bb6sus4(b9)", "Bb6sus4/C"] } ```