<@U0BLU7JTA> Do you know if the Kotlin compiler is...
# language-proposals
r
@dmitry.petrov Do you know if the Kotlin compiler is threadsafe? Meaning, can I invoke it in parallel and let it be safe? Asking because the Scala one for example is not and what I'm doing is evaluating N snippets of code in the fly whose evaluation does not depend on each others results.
y
yes, the Kotlin compiler is threadsafe
🎉 1
r
👏 awesome, thanks!