[][src]Function the_book::add_two

pub fn add_two(x: &usize) -> usize

Adds two to the number given.

Examples

let arg = 5;
let answer = the_book::add_two(&arg);

assert_eq!(7, answer);