From 63b0b5fdb4d1d76f5128c73c8003c85d804b7b37 Mon Sep 17 00:00:00 2001 From: RavitejaBaira Date: Fri, 9 Feb 2024 19:03:11 +0530 Subject: [PATCH] Added something --- .../java/org/example/introtooops/Main.java | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/example/introtooops/Main.java b/src/main/java/org/example/introtooops/Main.java index 36b5729..e1a4a09 100644 --- a/src/main/java/org/example/introtooops/Main.java +++ b/src/main/java/org/example/introtooops/Main.java @@ -2,14 +2,15 @@ public class Main { public static void main(String[] args) { - Student obj1 = new Student(); // Object of Student class is created. - obj1.name = "Vishnu"; - obj1.age = 25; - obj1.batchName = "Morning batch"; - obj1.gender = "Male"; - - Student obj2 = new Student(); - - System.out.println("Hello"); +// Student obj1 = new Student(); // Object of Student class is created. +// obj1.name = "Vishnu"; +// obj1.age = 25; +// obj1.batchName = "Morning batch"; +// obj1.gender = "Male"; +// +// Student obj2 = new Student(); +// +// System.out.println("Hello"); + System.out.println("Added something for git testing"); } }