Scala
Updated: 04/26/2017 by Computer Hope
Scala is a programming language introduced in 2003. It is object-oriented, strongly and statically-typed, and supports a functional programming paradigm.
Scala was created to address many criticisms of the Java programming language. As such, it has a syntax similar to Java and compiles to Java bytecode. However, there are several key differences inspired by languages such as Scheme and Haskell.
Here is "Hello, World!" written in Scala:
object HelloWorld extends App { println("Hello, World!") }