Function square

Source
pub fn square(num: i32) -> i32
Expand description

Computes a square of an input number

§Examples

§Tests

let n = 5;
let answer = new_project::square(n);
assert_eq!(25,answer);

§limitations

§Some other section