Kotlin is a cross-platform, statically typed, general-purpose programming language with type inference. Kotlin is designed to interoperate fully with Java, and the JVM version of Kotlin's standard library depends on the Java Class Library, but type inference allows its syntax to be more concise.More...
History:In July 2011, JetBrains unveiled Project Kotlin, a new
language for the JVM. The name comes from Kotlin
Island. Kotlin was released on 15 February 2016.
| JET BRAINS |
Example:
package org.kotlinlang.play
fun main() {
println("Hello, World!")
}