LoganBlackisle

MainApp

Nov 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public class MainApp {
  2.  
  3.     public static void main(String[] args) {
  4.         Faelles faelles1 = new Faelles();
  5.  
  6.         MyThread thread1 = new MyThread("Thread One", faelles1);
  7.         MyThread thread2 = new MyThread("Thread Two", faelles1);
  8.  
  9.         thread1.start();
  10.         thread2.start();
  11.     }
  12. }
Add Comment
Please, Sign In to add comment