mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-21 20:22:14 +00:00
7 lines
95 B
Rust
7 lines
95 B
Rust
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
pub fn add(a: u32, b: u32) -> u32 {
|
||
|
a + b
|
||
|
}
|