first commit

This commit is contained in:
2026-01-29 14:05:10 +05:30
commit 00b45c11a4
14 changed files with 137 additions and 0 deletions

12
Multi3.java Normal file
View File

@@ -0,0 +1,12 @@
// write a java code by implementing runnable interface.
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();
}
}