Hi, is there a way the multiplatform project uses ...
# multiplatform
l
Hi, is there a way the multiplatform project uses Int instead of Int32, I used it on Swift that Int types are Int32 in Swift. That causes some minor headaches.
s
Hi. No, because
<http://kotlin.Int|kotlin.Int>
and
<http://Swift.Int|Swift.Int>
are different types. For example, the former is 32-bit, while the latter is either 32-bit or 64-bit, depending on the platform.
l
Got it, thanks