Files
kotlin-fork/js/js.translator/testFiles/webDemoExamples1/cases/isCheck.kt
T
2012-02-27 21:55:58 +04:00

10 lines
241 B
Kotlin

fun main(args : Array<String>) {
println(getStringLength("aaa"))
println(getStringLength(1))
}
fun getStringLength(obj : Any) : Int? {
if (obj is String)
return obj.length // no cast to String is needed
return null
}