rust_test_crate_add/
lib.rs

1#[cfg(test)]
2mod tests;
3
4pub fn add(a: isize, b: isize) -> isize {
5    return a + b;
6}