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