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.

Hello.java 249B

1234567891011121314151617
  1. public class Hello {
  2. /**
  3. * @param args
  4. */
  5. public static void main(String[] args) {
  6. // TODO Auto-generated method stub
  7. //System.out.println("main");
  8. sayHello();
  9. }
  10. public static void sayHello(){
  11. System.out.println("Hello");
  12. }
  13. }