Kotlin - Variables and Type System
What is the output of this Kotlin code?
fun test(x: Any) {
if (x is String) println("String: $x")
else println("Not a String")
}
test(123)