Rust Add
fn add(param1: i64, param2: i64) -> i64 {
param1 + param2
}
This just adds the two input numbers with the language’s normal arithmetic and returns the sum.
fn add(param1: i64, param2: i64) -> i64 {
param1 + param2
}
This just adds the two input numbers with the language’s normal arithmetic and returns the sum.