diff --git a/src/GitDemo.java b/src/GitDemo.java new file mode 100644 index 0000000..01b3cd1 --- /dev/null +++ b/src/GitDemo.java @@ -0,0 +1,5 @@ +public class GitDemo { + public static void main(String[] args) { + System.out.println("Feb 01, 2024 GIT demo"); + } +} diff --git a/src/HelloWorldPrinter.java b/src/HelloWorldPrinter.java index 4666973..05d52db 100644 --- a/src/HelloWorldPrinter.java +++ b/src/HelloWorldPrinter.java @@ -5,6 +5,8 @@ public void run() { //What work we want to do in a separate thread, that will come here. System.out.println("Hello World. THREAD: " + Thread.currentThread().getName()); + System.out.println("lokesh's commit "); + } }