Detect Nemerle language

This commit is contained in:
Alex Zimin
2011-07-08 12:03:11 +08:00
parent 6e50990dfc
commit 1af6112471
5 changed files with 20 additions and 0 deletions

9
test/fixtures/hello.n vendored Normal file
View File

@@ -0,0 +1,9 @@
using System.Console;
module Program
{
void Main()
{
WriteLine("Hello world");
}
}