pub fn maxi(a: i64, b: i64) -> i64
Returns the maximum of two int values.
int
maxi(1, 2) # Returns 2 maxi(-3, -4) # Returns -3