blob: 292f49b01ec49215c16ae13650d23b6f733fc987 [file] [log] [blame]
package tests.app;
import tests.dep.Dep;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
new Dep();
System.out.println( "Hello World!" );
}
}