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

27 lines
542 B
C#

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