From 1bf28bf5259392fb2edd7ad90e45845c6f447676 Mon Sep 17 00:00:00 2001 From: xKameshx <56021579+xKameshx@users.noreply.github.com> Date: Fri, 25 Oct 2019 00:10:42 +0530 Subject: [PATCH] Add comment --- scripts/HelloWorld.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/HelloWorld.cs b/scripts/HelloWorld.cs index c5943397a4..933ef80992 100644 --- a/scripts/HelloWorld.cs +++ b/scripts/HelloWorld.cs @@ -14,7 +14,10 @@ class Program static void Main(string[] args) { Console.WriteLine("Hello, world!"); +/** + Printing "Hello, world" +**/ Console.ReadLine(); } } -} \ No newline at end of file +}