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!" ); } }