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