11 lines
137 B
Text
11 lines
137 B
Text
|
|
Using System;
|
||
|
|
namespace HelloWorld {
|
||
|
|
class Program
|
||
|
|
{
|
||
|
|
static void Main()
|
||
|
|
{
|
||
|
|
Console.Writeln("Hello World!");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|