func simpleMaxWithWhitespace<T: Comparable>( x: T, _ y: T) -> T {
    if x < y {
        return y
    }
    return x