Skip to content

Commit 13290fc

Browse files
committed
Restructure
1 parent 33ddb5c commit 13290fc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
class multiThreads implements Runnable
3+
{
4+
public void run()
5+
{
6+
System.out.println("Multi Thread Class");
7+
}
8+
}
9+
public class Exp9_1 {
10+
11+
public static void main(String[] args) {
12+
multiThreads m = new multiThreads();
13+
Thread t1 = new Thread(m);
14+
t1.start();
15+
}
16+
}

0 commit comments

Comments
 (0)