Initial commit
This commit is contained in:
8
src/lib.rs
Normal file
8
src/lib.rs
Normal file
@ -0,0 +1,8 @@
|
||||
#![deny(clippy::all)]
|
||||
|
||||
use napi_derive::napi;
|
||||
|
||||
#[napi]
|
||||
pub fn plus_100(input: u32) -> u32 {
|
||||
input + 100
|
||||
}
|
Reference in New Issue
Block a user