Do we have the ability to do background threading ...
# kotlin-native
s
Do we have the ability to do background threading work in Kotlin-native yet without using C++ / C to manage the threads?
m
Copy code
import platform.posix.*
...
pthread_create(...)
...
o