Oleg Yukhnevich
12/17/2021, 12:28 PMaltavir
12/19/2021, 12:02 PMnilTheDev
12/19/2021, 2:45 PMintelliJ
to try out simple Kotlin code. I would like to know how you are trying out simple Kotlin code? Would you like to use the script? Or create one?
One thing I love about interpreted languages line Python is being able to try out a code snippet directly from the command line. In Python, you can either use the interactive shell or save it in a .py
file and run it using python script.py
.
However, when it comes to Kotlin the scenario is hugely different. Most of the times I have to launch intelliJ
to understand the behaviour of a simple code. And launching an IDE is no joke. It takes a lot of time for starting and indexing. And if any extra dependency is needed we have to initialise a Gradle project for that. The web based Kotlin Playground is more convenient. But sadly we can't add any third party dependencies there.
I have always wanted something that would allow us to run a .kt
file from the command line. But I couldn't find something like that.
But today I wrote a python
script that allows me to run a Kotlin file from the command line.
For example,
Create a file with .kt
extension and write some code in it.
// filename -> app.kt
fun main(){
println("Hello, world")
}
Then in the terminal type this,
>> kotlin app.kt
Hello, world // the output
I would like to know how you are trying out small snippets of Kotlin code. Would you be interested in a tutorial that would show you how to create this kind of script? Let me know 🙂nfrankel
12/19/2021, 4:49 PMKyle Roe
12/21/2021, 8:30 AMBig Chungus
12/22/2021, 1:12 PM{}
) and kotlinx-serialization interop.Maksims Kims
12/23/2021, 1:04 PMTalha Fakioglu
12/26/2021, 6:07 PMJakob Löhnertz
12/30/2021, 7:00 AMhttps://youtu.be/6pWXre4gDyM▾
Big Chungus
12/30/2021, 6:16 PMDmitry Kandalov
12/31/2021, 10:00 AMnfrankel
12/31/2021, 3:47 PMSlackbot
01/03/2022, 11:58 AMSlackbot
01/03/2022, 10:30 PMVitaliy Zarubin
01/04/2022, 6:21 PMFilippo Vigani
01/12/2022, 8:19 PMgradle-kotlin-dsl-plugins
from jcenterSlackbot
01/15/2022, 6:02 AMMaksims Kims
01/16/2022, 4:21 PMnfrankel
01/17/2022, 5:30 PMhttps://www.youtube.com/watch?v=YfrZB3IiTWo▾
Slackbot
01/18/2022, 8:44 AMPiotr Krzemiński
01/20/2022, 8:27 AMMD
01/20/2022, 1:13 PMAdib Faramarzi
01/24/2022, 6:43 AMpablisco
01/24/2022, 9:31 AMBig Chungus
01/24/2022, 6:26 PMaltavir
01/31/2022, 2:01 PMhttps://youtu.be/yP5DIc2fVwQ▾
Katarzyna
02/04/2022, 8:06 AMBig Chungus
02/06/2022, 10:35 AMLeHaine
02/08/2022, 2:59 AMAbhi
02/08/2022, 1:25 PMAbhi
02/08/2022, 1:25 PMBig Chungus
02/08/2022, 1:35 PMkredits
😄Abhi
02/08/2022, 1:38 PMBig Chungus
02/08/2022, 1:42 PMAbhi
02/08/2022, 2:02 PMrrva
02/23/2022, 8:59 PMAbhi
03/22/2022, 10:30 AM