Function adder_for_test::add_two[][src]

pub fn add_two(a: i32) -> i32
Expand description

Adds 2 to the number given.__rust_force_expr!

Examples

let arg = 5;
let answer = adder::add_two(arg);

assert_eq!(7,answer);