Cosmos/source/HelloWorld/Program.cs
mterwoord_cp 17b84b3709
2007-08-31 14:48:18 +00:00

24 lines
493 B
C#

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