hey guys! im new to multiplatform with kotlin and ...
# multiplatform
w
hey guys! im new to multiplatform with kotlin and i was looking into it recently for a personal project and was wondering, whats the difference between different source sets like commonMain and commonJS? if u have any resources to learn more about it would be appreciated! thanks in advance!
d
commonMain
is where the kotlin code that can run on any of your platforms goes commonJS is a way of bundling javascript code, and isn't really related to source sets
w
oh i see, and i presume then that jsMain or jvmMain are specific code that can only run on those platforms?
d
Yep!
w
is this anywhere in the docs? i cannot seem to find it
w
thank you!