feat: Add comprehensive examples from multithreading and hashing lectures
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package lecture.multithreading.basics;
|
||||
|
||||
|
||||
public class MyThread extends Thread {
|
||||
@Override
|
||||
public void run() {
|
||||
System.out.println("Thread is running: " + Thread.currentThread().getName());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user