Files
kotlin-fork/compiler/testData/integration/smoke/helloAppOldAndParameterlessMain/hello.kt
T
Denis Zharkov bc722f9c5f Support main entry-point without arguments in JVM
#KT-26574 In Progress
2018-09-12 09:48:13 +03:00

10 lines
129 B
Kotlin
Vendored

package Hello
fun main(args: Array<String>) {
System.out.println("Hello!")
}
fun main() {
System.out.println("Fail")
}