Does anybody know how to enable coroutines in Kotl...
# javascript
n
Does anybody know how to enable coroutines in Kotlin JS in Gradle? I've scoured the docs to no avail...
k
What do you mean? They are enabled. What's wrong with them?
n
@konsoletyper I get stuff like:
Copy code
Unresolved reference: startCoroutine
Unresolved reference: Continuation
when compiling the program.
k
Do you get these messages on
import
directives? Show me the code.
n
Oh, wow never mind, I had to add the imports manually, the IDE didn't warn me in the editor that the imports were missing for some reason. Everything works now, thanks!