<<< Line Comments | Index | Block Comments, cont. >>> |
Block comments
start with forward slash and asterisk /*
end with asterisk and forward slash */
/*
This is my homework
*/
public class HelloWorld {
public static void main( String[] args ) {
System.out.println( "Hello World!" );
}
}
<<< Line Comments | Index | Block Comments, cont. >>> |