pub fn square(num: i32) -> i32
Compute a square of an input number
let n = 5; let answer = practo::square(n); assert_eq!(25, answer);