Kotlin - Basics and JVM Runtime
What will be the output of running the following Gradle task command if the project has no errors?
Task in build.gradle.kts:
tasks.register("hello") {
doLast {
println("Hello from Gradle task!")
}
}
Command:
./gradlew hello
