Hi everyone \o
I was currently getting started with Kotlin and I wanted to ask. How is a project structured? What is the standard way of structuring a Kotlin project?
I don't.. use JetBrains IDEs as a daily driver (Although I am excitedly waiting for Fleet to launch!) and trying out Kotlin has been a bit of a pain for me personally. Opening the "getting started" webpage immediately starts pushing IntelliJ IDEA which I don't want to use 😛
e
ephemient
01/13/2022, 3:29 PM
Kotlin's supported build system is Gradle, so the typical project structure follows that
c
Coffee Guy
01/13/2022, 3:31 PM
Coolio, thanks
m
Matteo Mirk
01/13/2022, 3:31 PM
right, you can use VScode if you prefer or other IDEs like Eclipse. As long as you build the project with Gradle you can do it even from the console.
c
Coffee Guy
01/13/2022, 3:32 PM
Yeah... I'm mostly a CLI nerd. So the cli tools would be pretty appreciated :P