From 67f773bb45c6d59604740fedadac33486e5a9396 Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Wed, 24 Oct 2018 10:17:52 -0500 Subject: [PATCH] Moving .csharp extension to .cs for CGIT highlighting --- helloworld.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 helloworld.cs diff --git a/helloworld.cs b/helloworld.cs new file mode 100644 index 0000000..8f1b297 --- /dev/null +++ b/helloworld.cs @@ -0,0 +1,9 @@ +using System; + +namespace AniNIX { + class HelloWorld { + public static void Main(string[] args) { + Console.WriteLine("Hello world!"); + } + } +}