Files
kotlin-fork/compiler/testData/integration/smoke/helloAppOldAndParameterlessMain/hello.kt
T

11 lines
143 B
Kotlin
Vendored

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