Concept Flow - Why operators are functions in Kotlin
Start with expression
Operator seen: +
Translate + to function call
Call function plus() on object
Function executes and returns result
Use returned result in expression
Kotlin treats operators like + as calls to functions, so using an operator is just calling a function behind the scenes.