1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(all(not(feature = "std"), feature = "alloc"))]
4extern crate alloc;
5
6mod fmt;
8
9pub mod prelude;
10
11pub mod core;
12pub mod music;
13
14pub mod audio;
15pub mod instrument;
16pub mod sequence;