Initial commit

This commit is contained in:
2023-10-17 19:08:10 +03:00
commit 9891ddfa5b
6 changed files with 581 additions and 0 deletions

8
src/lib.rs Normal file
View File

@ -0,0 +1,8 @@
#![deny(clippy::all)]
use napi_derive::napi;
#[napi]
pub fn plus_100(input: u32) -> u32 {
input + 100
}