summaryrefslogtreecommitdiff
path: root/tests/shared_library_rust/src/interfaces.rs
blob: 277008ba477b4b0444be8d919a67c3b53b2076e4 (plain)
1
2
3
4
5
pub fn add(a: i32, b: i32) -> i32
{
    return a + b;
}