From faadfa569ac3c752c0e89bfa611f6905490689a8 Mon Sep 17 00:00:00 2001 From: luay <3034588> Date: Wed, 14 May 2025 14:30:15 +0200 Subject: [PATCH] feat: Add new feature --- Main.java | 2 +- NewFeature.java | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 NewFeature.java diff --git a/Main.java b/Main.java index cd05adb..dde50c8 100644 --- a/Main.java +++ b/Main.java @@ -1,5 +1,5 @@ public class Main { public static void main(String[] args) { - System.out.println("Hello Git"); + System.out.println("Hello Student"); } } diff --git a/NewFeature.java b/NewFeature.java new file mode 100644 index 0000000..c76acb2 --- /dev/null +++ b/NewFeature.java @@ -0,0 +1,7 @@ +public class NewFeature { + private String featureName; + + public String getFeature() { + return this.featureName; + } +}