/* * @(#)Foo.java 1.0 04/03/04 * * You can modify the template of this file in the * directory ..\JCreator\Templates\Template_1\Project_Name.java * * You can also create your own project template by making a new * folder in the directory ..\JCreator\Template\. Use the other * templates as examples. * */ public class Foo { static Bar b = new Bar(); static{ System.out.println("Hello from Foo"); System.out.println(b.sss()); } }