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.

C.java 264B

123456789101112131415161718192021
  1. public class C {
  2. // foo's ordinary comment
  3. /**
  4. * description of foo
  5. */
  6. public void foo() {
  7. }
  8. //************
  9. /**
  10. * description of bar
  11. */
  12. public void bar() {
  13. }
  14. //*******
  15. public void goo() {
  16. }
  17. }