I wonder if Kotlin might now or in the future have the language support to be able to do something like the handy "power assertion" feature as seen in Groovy.
Example:
a =
10
b =
9
assert
91
== a * b
//produces…
Exception thrown
Assertion failed:
assert 91 == a * b
| | | |
| 10| 9
| 90
false