pkg(csharp-mono): add test

This commit is contained in:
Thomas Hobson 2021-02-28 16:53:00 +13:00
parent 09802f9f27
commit a1a6702e75
No known key found for this signature in database
GPG Key ID: 9F1FD9D87950DB6F
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using System;
public class Test
{
public static void Main(string[] args)
{
Console.WriteLine("OK");
}
}