Cosmos/source/HelloWorld/Program.cs
2007-08-31 13:31:29 +00:00

12 lines
264 B
C#

using System;
namespace HelloWorld {
public class Program {
public static void Main(string[] args) {
object x = new string('t', 1);
string s = "Test";
Console.WriteLine("Hello world!");
Console.ReadLine();
}
}
}