This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
libdistbot/src/lib.rs
2023-10-17 19:08:10 +03:00

9 lines
110 B
Rust

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