Initial repo

This commit is contained in:
2023-01-02 10:31:09 +03:00
commit daed1baafd
16 changed files with 768 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#![deny(clippy::all)]
use napi_derive::napi;
#[napi]
pub fn sum(a: i32, b: i32) -> i32 {
a + b
}