2015-09-07 11:44:36 -06:00
|
|
|
|
// concurrency/MainThread.java
|
2015-06-15 17:47:35 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
|
|
|
|
|
|
|
|
|
public class MainThread {
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
LiftOff launch = new LiftOff();
|
|
|
|
|
launch.run();
|
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
|
}
|
|
|
|
|
/* Output:
|
2015-06-15 17:47:35 -07:00
|
|
|
|
#0(9), #0(8), #0(7), #0(6), #0(5), #0(4), #0(3), #0(2),
|
|
|
|
|
#0(1), #0(Liftoff!),
|
2015-09-07 11:44:36 -06:00
|
|
|
|
*/
|