1A and 1B

This commit is contained in:
Aditya Tiwari
2026-01-23 14:09:56 +05:30
commit f2b4d16eff
7 changed files with 24 additions and 0 deletions

9
Multi.java Normal file
View File

@@ -0,0 +1,9 @@
class Multi extends Thread{
public void run(){
System.out.println("thread is running..");
}
public static void main(String args[]){
Multi t1 = new Multi();
t1.start();
}
}