Function adder

Source
pub fn adder(a: i32, b: i32) -> i32
Expand description

Adds two numbers together.

ยงExamples

let arg1 = 2;
let arg2 = 2;
let answer = flowscripter_template_rust_library::adder(arg1, arg2);

assert_eq!(4, answer);