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