Skip to content

Instantly share code, notes, and snippets.

@jimmymorales
Created July 5, 2020 22:12
Show Gist options
  • Save jimmymorales/9b269fbe94796dc995e0c94bf41dd12f to your computer and use it in GitHub Desktop.
Save jimmymorales/9b269fbe94796dc995e0c94bf41dd12f to your computer and use it in GitHub Desktop.
Operador `is` en Kotlin
fun main() {
val obj: Any = "Kotlin!"
if (obj is String) {
println("obj es un String")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment