Skip to content

Instantly share code, notes, and snippets.

@alexcrichton
Created May 29, 2020 20:34
Show Gist options
  • Save alexcrichton/c8dbdcdb186a8818dc38aae805b1cad0 to your computer and use it in GitHub Desktop.
Save alexcrichton/c8dbdcdb186a8818dc38aae805b1cad0 to your computer and use it in GitHub Desktop.
#[no_mangle]
pub extern "C" fn wasm_sin(key: i32) -> i32 {
(key as f32).sin() as i32
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment