blob: 9a473ac592d3a23a8de91c97e5139578decc6b2c [file] [log] [blame]
package javadoc.test013;
import java.util.*;
public class Test {
/**
* Javadoc comment
*/
public static void main(String[] args) {
/* method main */
System.out.println("Hello" + " world"); // comment
}
/** */
public void foo() {
System.out.println("Hello" + /* inside comment */ " world");
}
}