Files
linguist/samples/Nemerle/hello.n
2012-07-23 15:52:49 -05:00

9 lines
99 B
Plaintext

using System.Console;
module Program
{
Main() : void
{
WriteLine("Hello world");
}
}