When using a coroutine, we have the option of using the native-MT version or the standard kotlin coroutine.
i.e.
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0'
or
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-native-mt'
Do they differ in any way from one another? Which should we employ when?