From 612ac989edd6ccc7f34383e43978f7f2ea035a7b Mon Sep 17 00:00:00 2001 From: begnar Date: Mon, 3 Apr 2017 14:06:56 +0200 Subject: [PATCH] Update Using function --- HelloWorld/Program.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/HelloWorld/Program.cs b/HelloWorld/Program.cs index 26daecc..da70c8a 100644 --- a/HelloWorld/Program.cs +++ b/HelloWorld/Program.cs @@ -10,8 +10,15 @@ class Program { static void Main(string[] args) { + Console.WriteLine("Hello World!"); Console.WriteLine("Hello World, again!"); + test(); + } + + public static void test() + { + Console.WriteLine("Hi all"); } } }