// 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! // ---------------------------------------- // hi mom btw you have to click the green + and then the running man /* this is a comment across lots of lines */ public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, \"world!\""); System.out.println(); System.out.println("Hello \\again"); } }