Java: Output

Example: Simple Output in Java


	public class HelloWorld {

		public static void main(String[] args) {
			// Output "Hello, World." to the terminal window.
			System.out.println("Hello, World.");
		}
	}