Java

Java

A powerful language for building things that run reliably, at any scale, on almost anything.

Get Started Download the JDK →

Hello, Java

Modern Java is easy to get going.

Hello.java
void main() {
    IO.println("Hello, Java!");
}
$ java Hello.java
Hello, Java!

One command, no separate compile step: java compiles the source file in memory and runs it directly.