Don’t fear the custom operators!
Operator (+, -, >) are just normal functions. Treated a bit differently (syntatically) by the compiler.
func +(_ lhs: Int, _ rhs: Int) -> Int
// it could have been
func add(_ lhs: Int, _ rhs: Int) -> Int
// usasge
1 + 2…