<@U0YTHBUJZ>: I would recommend that. `val result:...
# getting-started
h
@fmd: I would recommend that.
val result: Int = 9f.toInt() / 2f
does not work, since
2f
is by design not automatically converted.
val result: Int = 9f.toInt() / 2f.toInt()
does not make sense, since it will return
0
.