1 2 3 4 5 6 7 8 9 10
pub mod input; pub mod output; pub mod prelude { pub use crate::{input::*, output::*, *}; } pub const KEY_RANGE: [&str; 12] = [ "C", "C#/Db", "D", "D#/Eb", "E", "F", "F#/Gb", "G", "G#/Ab", "A", "A#/Bb", "B", ];