So, in replit’s template of Kotlin, there is an unaccary args: Array<String>
in the hello world program. instead of having this:
fun main() {
println("Hello world!")
}
they have this:
fun main(args: Array<String>) {
println("Hello world!")
}
also, what version of kotlin does replit have?