Am I the only one who would prefer this: ``` val r...
# codereview
u
Am I the only one who would prefer this:
Copy code
val result = if (condition)
                foo()
             else
                bar()
over this:
Copy code
val result = if (condition)
      foo()
else
     bar()
?