<<< Program Comments | Index | Block Comments >>> |
Line comments start with two forward slashes // and continue to the end of the current line
public class HelloWorld { // Application begins here: public static void main( String[] args ) { System.out.println( "Hello World!" ); // print } }
<<< Program Comments | Index | Block Comments >>> |