13 lines
223 B
C#
13 lines
223 B
C#
using System;
|
|
|
|
namespace ConsoleApplication
|
|
{
|
|
public class Program
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hello World!");
|
|
return 0;
|
|
}
|
|
}
|
|
}
|