Kotlin Infix Notation is Confusing
Whenever I read Kotlin code that has infix notation, it always confuses me. Maybe I should say I still haven't gotten used to it? Honestly, it is just sugar syntax in my opinion.
For example:
val result = 2 plus 3
is the same as
val result = 2.plus(...
vtsen.hashnode.dev1 min read