Where do I get started with making a contribution ...
# announcements
b
Where do I get started with making a contribution to stdlib-common and making it available for ALL platforms?
Stdlib in main kotlin repo seems to cover only jvm and js. No idea how that's linked to native
i
If you do not plan to have any native-specific code, you can author it in the common part of the stdlib: https://github.com/JetBrains/kotlin/tree/master/libraries/stdlib/src What are you going to contribute, by the way? Is there an issue in youtrack youtrack about it?
b
I'm missing common currentTimeMillis function and had to implement it myself for all platforms via expect/actual. Thought I'd add that to stdlib too as it something quite commonly used in projects
Which means I'd be contributing native specific code too
a
Isn't there a way to get currentTime in millis already, though? https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.system/get-time-millis.html @Big Chungus
😂 1