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.

MainClass.java 135B

1234567891011
  1. package pack;
  2. import pkg.Hello;
  3. public class MainClass {
  4. public static void main(String[] args) {
  5. new Hello().sayHello();
  6. }
  7. }