Moving .csharp extension to .cs for CGIT highlighting

This commit is contained in:
DarkFeather 2018-10-24 10:17:52 -05:00
parent bf1e804584
commit 67f773bb45
1 changed files with 9 additions and 0 deletions

9
helloworld.cs Normal file
View File

@ -0,0 +1,9 @@
using System;
namespace AniNIX {
class HelloWorld {
public static void Main(string[] args) {
Console.WriteLine("Hello world!");
}
}
}