glicol 0.13.5

Glicol language main entry point.
Documentation

glicol-rs

You can use this crate to build audio apps with Glicol syntax.

use glicol::Engine; 
fn main() {
    let mut engine = Engine::<32>::new();
    engine.update_with_code(r#"o: sin 440"#);
    println!("next block {:?}", engine.next_block(vec![]));
}

More examples here.

Learn Glicol syntax here.

It compiles to WebAssembly and runs in browsers.

It can also be used on VST and Bela, but these are all experimental.

See the GitHub repository for details.