Advertisement
myshkin1

Untitled

Apr 22nd, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. class ReadInventoryThread extends Thread {
  2.     public void run() {
  3.         System.out.println("Printing zoo inventory");
  4.     }
  5.  
  6.     public static void main(String[] args) {
  7.         (new ReadInventoryThread()).start();
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement