opensound 0.0.6

(WIP)A One-Stop Multi-Level SoundSystem Abstraction, suitable for being a solid foundation for Pro-Audio Applications(e.g. a DAW) or other sound related apps.
Documentation
1
2
3
4
5
6
7
8
use opensound::ostp;

fn main() {
    ostp::install_default();
    ostp::emit::debug("Hello, world!", "main", None, true);

    println!("Hello, world!");
}