HelloWorld/helloworld.csharp
cxford 48ac2be371 Converting from Bazaar
Old log:
------------------------------------------------------------
revno: 1
committer: cxford <cxford@aninix.net>
branch nick: HelloWorld
timestamp: Thu 2015-12-10 16:51:21 -0600
message:
  Initializing for repos
2016-08-04 12:13:12 -05:00

10 lines
150 B
Plaintext

using System;
namespace AniNIX {
class HelloWorld {
public static void Main(string[] args) {
Console.WriteLine("Hello world!");
}
}
}