Skip to content

Commit

Permalink
Merge pull request #1 from M1KoDam/black-greeting
Browse files Browse the repository at this point in the history
greet black
  • Loading branch information
M1KoDam authored Oct 28, 2022
2 parents 0d4c189 + cc06354 commit 000efa2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions HelloApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,18 @@ class Program
static void Main(string[] args)
{
Console.WriteLine("hello everyone");
GreetBlack();
GreetWhite();
}

static void GreetWhite()
{
Console.WriteLine("hello white");
}

static void GreetBlack()
{
Console.WriteLine("hello black");
}
}
}

0 comments on commit 000efa2

Please sign in to comment.