/* Appellation: triads Contrib: FL03 */ use rstmt::neo::triad::*; use rstmt::Note; fn main() -> Result<(), Box> { let root = Note::from_pitch(0); let triad = Triad::major(root); println!("{triad:?}"); Ok(()) }