From cfdc6780871ebec4edb372cb3087a8f2b58d6c04 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Thu, 8 Jul 2021 03:31:41 +0000 Subject: [PATCH] Add 'hey.cs' --- hey.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 hey.cs diff --git a/hey.cs b/hey.cs new file mode 100644 index 0000000..ff31931 --- /dev/null +++ b/hey.cs @@ -0,0 +1,21 @@ +class Heyo +{ + static void Main() + { + System.Console.WriteLine("Heyo! Hello world..."); + } +} + + +or + + +using System; + +internal static class Heyo +{ + private static void Main() + { + Console.WriteLine("Heyo! Hello world..."); + } +} \ No newline at end of file