This commit is contained in:
Misa
2026-02-15 20:45:00 +05:30
commit a6112cfc98
60 changed files with 671 additions and 0 deletions

11
Multi3.java Normal file
View File

@@ -0,0 +1,11 @@
//write a java code by implementing runnable interface
public class Multi3 implements Runnable{
public void run(){
System.out.println("Thread is running...");
}
public static void main(String[] args){
Multi3 m1 = new Multi3();
Thread t1 = new Thread(m1);
t1.start();
}
}