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