Java

From Market Ruler Help
Jump to: navigation, search

Java is a general-purpose programming language. It is intended to let application developers "write once, run anywhere" (WORA), meaning that compiled Java code can run on all platforms that support Java without the need for recompilation.

The traditional "Hello, world!" program can be written in Java as:

public class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Prints the string to the console.
    }
}

Related: