7 lines
99 B
Kotlin
Vendored
7 lines
99 B
Kotlin
Vendored
// FILE: KotlinFile.kt
|
|
import java.io.File
|
|
|
|
fun foo(file: File) {
|
|
file.absolutePath.length()
|
|
}
|