Comment Styles


SUBMITTED BY: knightley

DATE: Sept. 3, 2015, 9:33 a.m.

FORMAT: Java

SIZE: 291 Bytes

HITS: 666

  1. /*
  2. This is comment in C style
  3. */
  4. public class Comment {
  5. /**
  6. Documented comment place in this line
  7. **/
  8. public static void main(String args[]) {
  9. System.out.println("Hello World");
  10. // This is comment in C++ style
  11. }
  12. }

comments powered by Disqus