assuming <@U0HNMQG3V> comment towards me. I don't...
# announcements
h
assuming @ross_a comment towards me. I don't know, assuming this is a language with tools. I am not a java guy (cause it has always been cumbersome. Kotlin looked like it may solve some of that. Therefore wanted to download the language. No real instructions on the site kotlinlang.org for install that I saw.
r
Here’s the simplest gradle project set up for Kotlin.. https://github.com/rossdanderson/gradle-kotlin Import into IntelliJ using Import Project and selecting the build.gradle file, then just clicking Ok through the remaining steps Put your source in
src/main/kotlin
and
src/test/kotlin
Build on the command line with:
./gradlew build
Or build in IntelliJ using the gradle tab
Gradle is definitely a tool worth learning as it will manage all your dependencies for you
as much as it can
Also any dependency you add in Gradle will be added to IntelliJ when you refresh the gradle project (or enable auto-import)