// This is the same HelloWorld program from Monday's lecture, but with a few added comments // at the beginning to show the syntax for comments in Java! Remember, all comments are // completely ignored by the compiler, so they are just there for human eyes! // ---------------------------------------- // yo mom, to run the program click the green plus, then the red running man /* this is a multine line comment */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello \"\"world\""); System.out.println("second line"); System.out.println(); System.out.println("fourth \\line"); } }