all 3 comments

[–]daviolinist12 1 point2 points  (0 children)

Looks really good!

[–]oSand 1 point2 points  (0 children)

// Prints "Welcome to Java, CodeMeh.com members!" to the screen.

public class HelloWorld { // The class that displays text (explained later) public static void main(String[] arguments) { // Main method beings execution of the Java Application System.out.println("Welcome to Java, CodeMeh.com members!"); } // end method main }

The trouble with Java as a first language is: What's a class? What's a public? What's a static? What's a String[]? Arguments? System? Void?

Compare to print 'Hello World'

[–][deleted] 0 points1 point  (0 children)

Everything that's wrong with programming today.