[][src]Function mix_colors::add_two

pub fn add_two(x: i32) -> i32

Adds one to the number given.

Examples

let arg = 5;
let answer = crate_project::add_one(arg);

assert_eq!(7, answer);