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 203B

12345678910111213
  1. /**
  2. * @version 1.0
  3. * @author
  4. */
  5. public class Hello {
  6. public static void main(String[] args) throws Exception {
  7. System.out.println("hello");
  8. fromA();
  9. Thread.currentThread().sleep(2000);
  10. }
  11. }