You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommentSyntax.java 270B

12345678910111213141516171819
  1. /** this is a comment */
  2. /* So is this */
  3. // so is this, and so is the form below
  4. /**/
  5. public class CommentSyntax {
  6. public static void main(String[] args) {
  7. /** this is a comment */
  8. /* So is this */
  9. // so is this, and so is the form below
  10. /**/
  11. }
  12. }