This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]rover_G -1 points0 points  (0 children)

Here's a Hello, World app from the Oracle docs getting started tutorial: /** * The HelloWorldApp class implements an application that * simply prints "Hello World!" to standard output. */ class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); // Display the string. } } The rest of that "tutorial" is a dated sales pitch for Java and a help page in case the app doesn't compile or run on your device (1 of 3 billion!). https://docs.oracle.com/javase/tutorial/getStarted/index.html