`val a = 123L` is basically the same as `val a: Lo...
# codingconventions
f
val a = 123L
is basically the same as
val a: Long = 123
, right?
👌 5