15 lines
223 B
C#
15 lines
223 B
C#
namespace World
|
|
{
|
|
class Hello {
|
|
static void Main(string []args)
|
|
{
|
|
Hello x = new Hello();
|
|
System.Console.WriteLine("Hello, world.");
|
|
}
|
|
}
|
|
|
|
interface Blah {
|
|
|
|
}
|
|
}
|