Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

Kotlin is like java

val age = 42

if (age < 10) {
    println("You're too young to watch this movie")
} else if (age < 13) {
    println("You can watch this movie with a parent")
} else {
    println("You can watch this movie")
}
Source by ttu.github.io #
 
PREVIOUS NEXT
Tagged: #Kotlin #java
ADD COMMENT
Topic
Name
8+7 =