Concept Flow - Why operators are methods in Ruby
Start with an expression
Ruby sees operator
Treat operator as method call
Call method on object
Method executes and returns result
Use result in expression
Ruby treats operators like +, -, * as method calls on objects, so operators are just methods that can be customized.