OnJava8-Examples/concurrency/MainThread.java
Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

13 lines
298 B
Java

//: concurrency/MainThread.java
// ©2015 MindView LLC: see Copyright.txt
public class MainThread {
public static void main(String[] args) {
LiftOff launch = new LiftOff();
launch.run();
}
} /* Output:
#0(9), #0(8), #0(7), #0(6), #0(5), #0(4), #0(3), #0(2),
#0(1), #0(Liftoff!),
*///:~