package lecture.multithreading.basics; public class ThreadVsRunnable { public static void main(String[] args) { MyThread thread1 = new MyThread(); thread1.start(); Thread thread2 = new Thread(new MyRunnable()); thread2.start(); } }