Kotlin - Basics and JVM Runtime
What will be the output of this Kotlin program?
fun main(args: ArrayAssuming the program is run without any command-line arguments.) { if (args.isEmpty()) { println("No arguments") } else { println(args[0]) } }
