quick question, is there some stdlib equivalent to...
# kotlin-native
m
quick question, is there some stdlib equivalent to sleep or delay for kotlin native that doesn't require me to pull in coroutines?
m
platform.posix.sleep
,
platform.posix.usleep
o
but that exists on POSIX systems only
m
Thanks guys! 👍