Kotlin
Updated: 04/02/2019 by Computer Hope
Kotlin is a cross-platform programming language that works with JVM (Java virtual machine), Android, browser, and native code. Project Kotlin has been in development since 2011 and version 1.0 was released on February 15, 2016 by JetBrains.
Hello World! in Kotlin
fun main(args : Array) { println("Hello, world!") }