Hi all I am using Kotlin script in gradle and woul...
# arrow
z
Hi all I am using Kotlin script in gradle and would like to enable arrow-core. On the website, it describes https://arrow-kt.io/docs/quickstart/setup/#arrow-core but how to enable it in Kotlin script
Copy code
plugins {
    application
    kotlin("jvm") version "1.4.0"
    ?????
}
Would be nice if someone could help.
a
Hello! If I'm not mistaken, it should be
kotlin("kapt") version "1.4.0"
👍 1
r
We need to add Kotlin instructions for people using the Kotlin gradle DSL to our README’s //cc @Rachel