From 5397f8567736a232361d877c3faa64f35e99cec9 Mon Sep 17 00:00:00 2001 From: black Date: Sun, 12 Nov 2023 00:10:50 +0500 Subject: [PATCH 1/2] Add hello black --- HelloApp/.idea/.idea.HelloApp/.idea/vcs.xml | 2 +- HelloApp/HelloApp/Program.cs | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HelloApp/.idea/.idea.HelloApp/.idea/vcs.xml b/HelloApp/.idea/.idea.HelloApp/.idea/vcs.xml index 6c0b863..35eb1dd 100644 --- a/HelloApp/.idea/.idea.HelloApp/.idea/vcs.xml +++ b/HelloApp/.idea/.idea.HelloApp/.idea/vcs.xml @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/HelloApp/HelloApp/Program.cs b/HelloApp/HelloApp/Program.cs index edc3a4b..de27df0 100644 --- a/HelloApp/HelloApp/Program.cs +++ b/HelloApp/HelloApp/Program.cs @@ -6,4 +6,8 @@ static void Main() { Console.WriteLine("hello everyone"); } + public static void GreetBlack() + { + Console.WriteLine("hello black"); + } } \ No newline at end of file From 2db4be0e19699c740bc67648b3e878b1e80bf93b Mon Sep 17 00:00:00 2001 From: black Date: Sun, 12 Nov 2023 00:20:49 +0500 Subject: [PATCH 2/2] Fix --- HelloApp/HelloApp/Program.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HelloApp/HelloApp/Program.cs b/HelloApp/HelloApp/Program.cs index de27df0..6ae86dd 100644 --- a/HelloApp/HelloApp/Program.cs +++ b/HelloApp/HelloApp/Program.cs @@ -5,6 +5,12 @@ static class HelloApp static void Main() { Console.WriteLine("hello everyone"); + GreetBlack(); + GreetWhite(); + } + public static void GreetWhite() + { + Console.WriteLine("hello white"); } public static void GreetBlack() {